Hi,
I have a combobox where value is to be passed on button click rather than on just select. How to do this on button click.
Regards,
Aditi
see first sample: https://dojotoolkit.org/reference-guide/1.10/dijit/form/ComboBox.html
Hi!
Simplest way is to pass the value of the ComboBox like that :
on(thisButton, "click", function(registry.byId("ComboboxId").get('value')){....});
Regards