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
For example:I have bound a Accessdatasouce to WebCombo1.WebCombo1 has 3 rows.when Mouse not focus on WebCombo1, How can I get the 3 rows,and these rows's Text and Value ?
Hello Frank,
Unfortunately, you could not do that if WebCombo has not loaded the data yet. It will only load the data after you clicked to show the drop down.However, you can trigger this at OnInitialize clientside event.After it loaded the data, you can access the rows.Below, is the attached code.
function WebCombo1_OnInitialize(controlId) { var combo = ISGetObject("WebCombo1"); combo.ShowDropDown(); return true; } function Button1_onclick() { var combo = ISGetObject("WebCombo1"); alert(combo.GetRows()[0].Value); }
Hope it helps.
Regards,Handy
thank you! Handy Surya
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