Any control similar to Combobox

6 messages - 905 views

Hi,

are there any component similar to combobox?

 

Thanks

Not yet, because we don't solve this question : "What is the best way to present a combobox on a mobile phone ?" (popupMenu, new screen, ...)

popup with incremental search?

The idea is to mimic the behavior of windows (not always) as people are accustomed to using windows, well we know the mobile it´s a device with less resources but all days we can see new devices with high power.

Good news, if you want, you can checkout lastest development sources of Kuix on the SVN. And then try to use the new Choice widget.

Look hat this thread for changelog.

 

A Choice is an extension to a classic RadioGroup.

Usage :

...

<choice>

    <radioGroup onChange="myOnChangeAction(this.value)">

       <RadioButton value="1" selected="true">Choice 1</radioButton>

       <RadioButton value="2">Choice 2</radioButton>

    </radioGroup>

</choice>

...

The radioGroup is displayed in a new Screen only whan you pressed or clicked the choice widget.

This widget is currently in debug state.

Good, I will try.