BlackBerry Forums Support Community
              

Closed Thread
 
Thread Tools
Old 05-27-2009, 08:46 AM   #1
itp
Knows Where the Search Button Is
 
Join Date: Jul 2008
Model: none
PIN: N/A
Carrier: none
Posts: 24
Default getSelectedIndex() on radiobuttongroup

Please Login to Remove!

I want to build a form with radio buttons and a submit button. I use a FieldChangeListener to capture selection. I think getSelectedIndex() is supposed to retrieve button selected, but I keep getting a null when the button is clicked. I was able to overcome this with an inner class on radiobuttongroup , but I know it is not the best solution.
Can anyone advise?

PHP Code:
 
public class fieldTest extends MainScreen implements FieldChangeListener
{
    
ButtonField button1 null;
    
RadioButtonField radioButtonF1 null;
    
RadioButtonField radioButtonF2 null;
    
RadioButtonField radioButtonF3 null;

    
int valueOfRadioButton 0;
    public 
fieldTest()
    {  
        
super(DEFAULT_MENU DEFAULT_CLOSE);
        
LabelField title = new LabelField("RadioButtonField Example" ,LabelField.ELLIPSIS |  LabelField.USE_ALL_WIDTH); 
        
setTitle(title);  
        
        
LabelField lblAlblB;
        
lblA = new LabelField("Here comes some radioButtonFields in a RadioButtonGroup:");
        
this.add(lblA); 
        
        final 
RadioButtonGroup rbGroup = new RadioButtonGroup();
        
RadioButtonField radioButtonF1 = new RadioButtonField("Radio Option 1"rbGrouptrue);    // turn the first one "on"
        
RadioButtonField radioButtonF2 = new RadioButtonField("Radio Option 2"rbGroupfalse);
        
RadioButtonField radioButtonF3 = new RadioButtonField("Radio Option 3"rbGroupfalse);
        
this.add(radioButtonF1);
        
this.add(radioButtonF2);
        
this.add(radioButtonF3);
        
        
button1 = new ButtonField("Submit");            
        
this.add(button1);
        
button1.setChangeListener(this);        
        
rbGroup.setChangeListener(new FieldChangeListener() {
                      public 
void fieldChanged(Field fieldint context)
                     {          if(
rbGroup.getSelectedIndex() == 0)             
                                               
valueOfRadioButton 0;
                                if(
rbGroup.getSelectedIndex() == 1)             
                                               
valueOfRadioButton 1;          
                                if(
rbGroup.getSelectedIndex() == 2)             
                                               
valueOfRadioButton 2;          
                      }       
               });
              
        
radioButtonF1.setChangeListener(this);
        
radioButtonF2.setChangeListener(this);
        
radioButtonF3.setChangeListener(this);
        
    }
    
// over-ride default onSavePrompt method to avoid being asked if I want to save each time.
    
public boolean onSavePrompt()
    {
        return 
true;
    }         
    
    public 
void fieldChanged(Field fieldint context)
    {
         if(
field instanceof ButtonField)
        {    
             if(
valueOfRadioButton == 0)
                 
Dialog.alert("Option One was selected!");             
             if(
valueOfRadioButton == 1)
                 
Dialog.alert("Option Two was selected!");             
             if(
valueOfRadioButton == 2)
                 
Dialog.alert("Option Three was selected!");              
        }        
    }    

Offline  
Closed Thread



Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


Nextiva X-835 SIP Color Deskset VoIP Phone Black New In Box picture

Nextiva X-835 SIP Color Deskset VoIP Phone Black New In Box

$44.99



Allworx 9212 VoIP IP Phone with Stand Warranty Paetec 9212P Business Office picture

Allworx 9212 VoIP IP Phone with Stand Warranty Paetec 9212P Business Office

$17.98



Polycom VVX 410 VoIP IP Phone & Stand Warranty Reset 2201-46162-001 SIP or Lync picture

Polycom VVX 410 VoIP IP Phone & Stand Warranty Reset 2201-46162-001 SIP or Lync

$19.98



Polycom Vvx 601 VoIP 16 Line Business Phone 4.3

Polycom Vvx 601 VoIP 16 Line Business Phone 4.3" HD Touchscreen PoE With Stand

$28.95



Polycom VVX 410 VoIP IP Phone & Stand Warranty Reset 2201-46186-001 SIP or Lync picture

Polycom VVX 410 VoIP IP Phone & Stand Warranty Reset 2201-46186-001 SIP or Lync

$19.98



Mitel 5330e VoIP Dual Mode Gigabit Phone - Black picture

Mitel 5330e VoIP Dual Mode Gigabit Phone - Black

$15.95







Copyright © 2004-2016 BlackBerryForums.com.
The names RIM © and BlackBerry © are registered Trademarks of BlackBerry Inc.