is there a way to show 'please wait...' and disabling the control in my select control while the data is being retrieved?
Also, the above code doesn't show me the selected text/value when i select a row.
is there a way to show 'please wait...' and disabling the control in my select control while the data is being retrieved?
Also, the above code doesn't show me the selected text/value when i select a row.
Hello,
Yes, you can do it. To show/hide spinner add action "Run JavaScript" with folowing code:
codeshowSpinner();
hideSpinner();/code
why is the control showing no values when I am selecting one? Do I have to do something or is it automatic?
When I enter an initial value of 'Please select one...' in my select control's option property, it doesn't show that
Hello, it's a bug.
We are looking for a workaround.
I will update.
Hello,
This bug will be fixed in next release.
For now, we found a workaround for you.
You have to add Success event for Rest Service and add "Run JavaScript" action with following JS code for this event:
codeTiggzi('mobileselectmenu1_11').find('option').attr('data-placeholder', 'false').data('placeholder', false);
Tiggzi('mobileselectmenu1_11').refresh();/code
Paste Select Menu component name instead of "mobileselectmenu1_11". Select Menu won't be empty after this.
Bug is fixed now.