Dear All,
I'm having a dynamic form having a comboBox item.
Using optionDatasource for comboBox item.
And i'm refreshing the data in the comboBox while pressing F5 key in the
comboBoxItem.
Refresh is working fine but page refresh is also happening.
My code to refresh data is
I cannot stop only f5 key, while i tried with other keys its stopping. I have to stop propagation and bubbling of the event.
Please help me...
Thanks in advance
-Harikrishnadhas.K
I'm having a dynamic form having a comboBox item.
Using optionDatasource for comboBox item.
And i'm refreshing the data in the comboBox while pressing F5 key in the
comboBoxItem.
Refresh is working fine but page refresh is also happening.
My code to refresh data is
Code:
keyDown : "if(keyName == 'f5'){this.getOptionDataSource().testData = parent.getDDDWRec(this.optionDataSource, {}, document, {}, true);this.fetchData();return false;}"
I cannot stop only f5 key, while i tried with other keys its stopping. I have to stop propagation and bubbling of the event.
Please help me...
Thanks in advance
-Harikrishnadhas.K
Comment