iSeller Commerce
iSeller POS Retail
iSeller POS F&B
iSeller POS Express
Crosslight
WebUI
ClientUI
What's New
Download Trial
Web Solution
Mobile Solution
Enterprise Solution
Custom Development
Blog
Community
Latest Development Blogs
ForumPostTopic
Browse By Tag
Hi,
I want a client side event which will be fired after the data for a particular search has been loaded on the result box.
I need this funcitonality because i want to implement the following:
I populate all the selected rows of my result box in a listbox. but i want to indicate in the dropdown, which rows have been selected. so i want to compare the items in the dropdown and the listbox assoon as the dropdown colapses and shows data.
I suggest you to try OnShowDropDown client side event. OnShowDropDown client side event specifies the client side (Javascript) function that will be invoked when the ResultBox is about to show.
Hope this helps. Please let me know if you have different scenario.
You could try using the client side event AfterItemSelected for such scenario. Here is the snippet:
function cmb_OnAfterItemSelected(controlId){ var cmb = ISGetObject(controlId); var msg = "Selected item \n" + "Value: " + cmb.Value + "\n" + "Text: " + cmb.Text + "\n" + "Index: " + cmb.SelectedIndex; alert(msg); return true;}
this event will be fired after an item is selected. not when data is loaded. so the client will have to select one row. which is not what I require. is there any event which is fired when the data is loaded?
or can i do the following:
add a row in the client side code.
use the onrowadded event.
will this row get added after the data is populated on the result box from data source?
or
Choose this if you're already a member of Intersoft Community Forum. You can link your OpenID account to your existing Intersoft Social ID.
Choose this if you don't have an Intersoft account yet. Your authenticated OpenID will be automatically linked to your new Intersoft account.
Enter your Wordpress Blogname