Hi All,
I have an issue with the combobox control, when in the browser manually closing the control is fine. But when mobile after selecting an item the control needs to be clicked on the top right which is a very tiny "x" in the mobile the control is not getting scaled (probably I did not consider it) but auto closing it should be fine. Is it possible to do that? So anytime someone actually selects an person the control just autocloses.
Thanks
Solved! Go to Solution.
Hi All,
Thank for the inputs but I found a way to do it using the "toggle function" trick.
//toggle OnChange
Set(
_fn_glbEnableComboBoxStatus,
{Enabled:true,Count:CountRows(ComboBox1.SelectedItems)}
);
//toggle Default
ComboBox1.DisplayMode = Disabled
//ComboBox1 DisplayMode
If(CountRows(Self.SelectedItems)<>_fn_glbEnableComboBoxStatus.Count,Disabled,Edit)
Hope it helps anyone else.
@rssilvaba Unfortunately this is currently not possible. I had the same issue and finally had to live with it and had to do an end user training.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up
Hi @rssilvaba ,
We use a lot of these on iPads - if you press on the screen away form the combo box, it should close.
Please click Accept as solution if my post helped you solve your issue. This will help others find it more readily. It also closes the item. If the content was useful in other ways, please consider giving it Thumbs Up.
Hi All,
Thank for the inputs but I found a way to do it using the "toggle function" trick.
//toggle OnChange
Set(
_fn_glbEnableComboBoxStatus,
{Enabled:true,Count:CountRows(ComboBox1.SelectedItems)}
);
//toggle Default
ComboBox1.DisplayMode = Disabled
//ComboBox1 DisplayMode
If(CountRows(Self.SelectedItems)<>_fn_glbEnableComboBoxStatus.Count,Disabled,Edit)
Hope it helps anyone else.
User | Count |
---|---|
194 | |
123 | |
87 | |
48 | |
40 |
User | Count |
---|---|
277 | |
165 | |
139 | |
80 | |
76 |