| Reply | « Previous Thread | Next Thread » |
|
I found another bug for Nokia 6600.
getLabel() method from ChoiceGroup class returns null! I have a form with more choice groups (preferences form). And for saving the choices I've implemented a procedure which saves the data for each of the choice groups. In order to know which porperty is saved I call the getLabel method for the choice group. And the method returns null on Nokia 6600 ! |
|
That seems to be the case.
I managed to go around the issue using setLabel() method when creating the ChoiceGroup object: Code:
// Create choiceGroup and set up state listener for it
ChoiceGroup chGroup= new ChoiceGroup("Group", ChoiceGroup.EXCLUSIVE, groupItems, null);
chGroup.setSelectedIndex(selectedVehicle, true);
chGroup.setLabel("MyChoiceGroup");
Regards, -Samuli |
| Reply | « Previous Thread | Next Thread » |
| Thread Tools | Search this Thread |
|---|---|