We are running validation for values that users selects from Combo box.
If we use the onChange event it fires for every list item that user scrolls through while the select list is open.
We want to fire validation only once when the user makes final selection and closes the combo box.
Is there a way to catch such condition?
Thank you,
Stan.
For now you can use onBlur event which occurs when after selection combo closed.
The problem with onChange event confirmed , some kind of fix will be available in few days.
You can use attached js file instead of original one, now onChange event occurs only
- value selecte by mouse click
- value selected by keyboard navigation and Enter key
- new value typed and focus moved outside of combo
dhtmlxcombo.zip (8.42 KB)
thank you!