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
I have an issue with Webcombo (MultipleSelectionSettings).
I have two webcombos, the values for combo2 (with MultipleSelectionSettings) is populated based on the value selected in combo1.I selected mutliple values in combo2 , changed the value in the combo1,ideally it has to load new data into combo2 and clear the earlier selected data, it is loading new data in the combo2 for the selected value in combo1but the old values are not cleared on the onvaluechanged event of combo1. I have attached the screenshots with steps to be followed to replicate the issue.
Regards,
Anitha
Hello Anitha,
To clear the old values in WebCombo2 based on your scenario, I suggest you to use OnLostFocus Event in WebCombo1 ClientSideEvent.
You can follow codes bellow :
function WebCombo1_OnLostFocus(controlId) { var WebCombo1 = ISGetObject(controlId); var WebCombo2 = ISGetObject("WebCombo2"); WebCombo2.IsDirty = true; WebCombo2.NeedClearList = true; WebCombo2.Values = null; WebCombo2.ClearSelection(); WebCombo2.RefreshValueItems(); return true; }
Please let me know is it works as you expect or not ?
Thank you.Riendy
Thanks Riendy,
It worked fine.
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