Questions tagged [lwuit-combobox]

A combo box is a list that allows only one selection at a time, when a user clicks the combo box a popup button with the full list of elements allows the selection of a single element.

The combo box is driven by the list model and allows all the renderer features of the List as well.

5 questions
2
votes
1 answer

How to add calendar in lwuit TextField or comboBox

I am creating an application using lwuit. And i want to add calendar in comboBox. please give me an idea as soon as possible..
Ayush
  • 31
  • 1
  • 3
1
vote
2 answers

Remove items from combo box lwuit?

How to remove all items or a single item from a combo box in LWUIT ? Is there any functions like removeall() ?
Ganesh
  • 179
  • 10
1
vote
1 answer

Key Value in combobox lwuit?

I want to store and retrieve a key value associated with the comboBox. I have used only getSelectedIndex() and getSelectedItem(). This will not help my purpose as I have to get a unique key value assocaiated with the item. Example Scenario :…
Ganesh
  • 179
  • 10
1
vote
3 answers

How to do an action when a LWUIT List item clicked

I have a LWUIT application that has a list which involving some items. The list itself has been added to a Combobox . 1/ How I change the colour of an item of list when I focus on it? final com.sun.lwuit.List mylist = new…
PHPFan
  • 756
  • 3
  • 12
  • 46
0
votes
1 answer

Why LWUIT ComboBox's blank item is not selectable?

I created a ComboBox of String[] : genretxt=new ComboBox(new String[]{"Féminin","Masculin"}); The problem is that the popup has a blank item when clicking the ComboBox at runtime , but this blank item is not clickable : even though I click it then…
user806574