How to navigate to specific radio button of a single radio group.

Hi
i have a radio group named rdo_grp, in that radio group i had 3 radio buttons named rdo_a, rdo_b and rdo_c.
Now, when forms executes and user navigates from any text item to above mentioned radio grp, the cursor implicitly goes to first radio button ( i.e.rdo_a).
But i want to navigate the cursor to second radio button (i.e. rdo_b) when cursor navigates from any text to radio grp.
please help.
Onkar

The focus is given to the radio button that represents the value of the radio group - i.e. the cursor goes to the selected radio button, not necessarily the first button in the group. To force navigation to a particular button, I think you will have to change the value of the radio group. I don't know if that's desirable, but it could be done with a WHEN-NEW-ITEM-INSTANCE trigger on the radio group:
:rdo_grp := <value of rdo_b>;

Similar Messages

  • How to show/hide individual radio buttons in a single radio button list

    Can I apply javascript to checkboxes in order to show/hide individual radio buttons in a single radio button list?

    Thanks, Niall,
    I'll give it a try . . .
    Yours,
    Robert Anderson
    SWRCB WebSupport
    1001 I Street
    Sacramento, CA 95814
    8th floor 59B
    (916) 341-5950
    [email protected]
    >>> Niall O'Donovan <[email protected]> 8/5/2010 1:47 PM >>>
    Hi,
    Yes, it can be done. You just need to reference the actual button, rather than the radio button group.
    It is best if you name the radio button group AND all of the individual radio buttons.
    If the radio button group was named "myRadioButtons" and the three rb were named "yesRB", "noRB", and "maybeRB". All of this is in the hierarchy.
    Then this script in the click event of the checkbox would work:
    if (this.rawValue == 1)
         myRadioButtons.maybeRB.presence = "hidden";
    else
         myRadioButtons.maybeRB.presence = "visible";
    Hope that helps,
    Niall

  • Two radio buttons in a single row of a table

    Hi All,
    Can we have two radio buttons in a single row of ADF TABLE.
    My requirement is that i have a list of submitted records. The user can approve or reject the records.
    All the records are displayed in the table. there will be two columns in the table(Approve , Reject) The user can approve the first record and reject the second record and so on....
    using table selectOne we can select only one row. Using radio buttons how to select the multiple records, at the same time grouping is done between the two columns(radio buttons) in the table

    Hi,
    I don't think that you can do this with radio buttons. The usecase is more for chackboxes. It would have been a usecase for radio buttons if there was a single column with 3 possible options
    - pending
    - approved
    - rejected
    Frank

  • Radio buttons in a single line

    hi all,
    how to get more than one radio buttons in a single line in a selection screen?
    please give the solution as it is urgent.
    i will surely reward ur efforts.
    thanks
    sanjeev

    Hi,
    check this this will be helpful for u.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS:WIP_ONLY RADIOBUTTON GROUP RAD1.
    SELECTION-SCREEN COMMENT 2(15) WIP FOR FIELD WIP_ONLY.
    PARAMETERS:HIS_ONLY RADIOBUTTON GROUP RAD1 default 'X'.
    SELECTION-SCREEN COMMENT 20(15) HIS FOR FIELD HIS_ONLY.
    PARAMETERS:BOTH RADIOBUTTON GROUP RAD1.
    SELECTION-SCREEN COMMENT 40(15) WIP_HIS FOR FIELD BOTH.
    SELECTION-SCREEN END OF LINE.
    at selection-screen output.
    WIP = 'Work-in-Process Only'.
    HIS = 'History Only'.
    WIP_HIS = 'Both WIP & HIS'.
    regards,
    bharat.

  • How do i search specific songs or artists in itunes radio

    newest version of itunes, 10/3/2013, how do i search artist, song, albums, or make/edit radio stations on PC. i see how to on my iphone but not my computer. the website says its under 'edit stations' but that is not anywhere on itunes. any suggestions?

    Click the + sign above My Stations to create a new station then type a Genre, Artist or Song in the search box.

  • How to consolidate conutry specific forms in to a single form

    Hello,
    I have a requirement where I have to consolidate the country specific forms into a single form. Have country specific forms like France has its own form and US has its own form. How to consolidate these forms into a single form? What is the process?
    I appreciate your responses.
    Thanks,
    mp

    Hello,
    you can use the following way to include different languages.
    Create the Text elements in different languages.
    Then you can call them in your script by giving the language parameter.
    For example:- I have created a text object as ZHEX-MACRO-4MARKEN and then called with language parameter as below.
    INCLUDE ZHEX-MACRO-4MARKEN OBJECT TEXT ID ST LANGUAGE EN
    Thanks,
    Manish

  • How can I move all my contacts into a single email group from all the other group?

    I've got several email accounts, but my contacts are spread across them. Of course, when I access or search my contacts they do all get searched together, but I need to delete an account and this will result in me losing many contacts.
    So before I do this, I want to consolidate all my contacts into my main personal email group account. But short of doing them one by one, I can't find a way and I have several thousand contacts at risk of being lost.
    Can anyone advise me?

    Go to your Contacts on your Mac - if more than one pick the most accurate; delete any contacts you don't want. Select all the contacts, and from the File menu choose 'Export...'>'Export vCard'. Save the resultant file safely: it will be your 'master' list.
    Now delete all the contacts from whichever device has the most in it. Sync with iCloud. If necessary repeat with different Macs. The result should be that the deletions sync to iCloud and in the end you finish up with empty Contacts lists everywhere.
    Now you can import your saved file to one of your Macs. Make sure you import it under 'iCloud' not 'On My Mac'. Then it should propagate iCloud and any other devices. Keep the saved file at least until you are satisfied that all is in order.

  • Radio button trouble when more than 2 selections

    I have a VI that uses 9 radio buttons to select one of nine cases. Each case contains a subVI that essentially creates a dated filename to write varying GPIB data to. The first two selections (1 and 2) work as designed. I get a date-coded filename with each subsequent run of the Main VI. However, my problem lies in selections 3 - 9. Each of these also creates a corresponding filename, however 3 seconds after the initial run, I get a second unprompted filename. It appears that selections 3-9 run twice. One filename reflects the value left in the buffer from the previous selection and the other is new as expected. I have scoured my code for loops and there are none. I would have expected all selctions to perform alike but the first two are working to design. Any ideas?
    Thanks in advance!
    Phil

    Your description dies not make a lot of sense. Do you have nine radio buttons or a single radio button with 9 choices? What exaclty happens 3 seconds after the initial run? Is the program still running at that time? Do you use dataflow or is the code chopped up and uses mostly local variables and value property nodes?
    Could you strip out your VI to the essentials to demonstrate the problem., Remove all the GPIB and file IO so it just displays the resulting file name in a text indicator... Then attach it here. Thanks!
    LabVIEW Champion . Do more with less code and in less time .

  • How to check Radio buttons with Differfent button values

    Good Day,
    I am currently trying to write a script that would hide 5 of 6 radio buttons
    I have a radio button called "3. Transfer"
    with values of :
         Yes;
         Supp;
         Reg; and
         do_not_transfer
    as well I have a drop down called "REL.ITEM"
    with values of
              3(A);
              3(B);
              4(A);
              4(B); and
              4(C)
    I know how to get the value of the box and manipulate other fields
    like
    //START
    var transfer = getField("3. Transfer").value
    var relitem = getField("REL.ITEM").value
    if (transfer = "Yes" || transfer = "Supp") && (relitem == "4(C)" || relitem == "4(B)"))
         getField("a. recommend").checkThisBox(0,true);
         getField("a. recommend").display = display.visible
        getField("a. I do not recommend").checkThisBox(0,false);
        getField("a. I do not recommend").display = display.hidden
    else if (transfer = "do_not_transfer")
         getField("a. recommend").checkThisBox(0,false);
         getField("a. recommend").display = display.hidden
         getField("a. I do not recommend").checkThisBox(0,ftrue);
         getField("a. I do not recommend").display = display.visible
    //END
    I would like to make it so that if REL.ITEM != 4(A); 4(B); 4(C) that the radio box's with values of "Yes", "Supp" and "Reg" are hidden while "do_not_transfer" is still displayed and checked.
    I've been going through forums, google and acrobat documentation and I can't seem to find what I'm looking for.
    Thanks for your help in advance.

    if (transfer = "Yes" || transfer = "Supp") && (relitem == "4(C)" || relitem == "4(B)"))
    This should be:
    if ((transfer == "Yes" || transfer == "Supp") && (relitem == "4(C)" || relitem == "4(B)"))
    Similarly,
    else if (transfer = "do_not_transfer")
    should be:
    else if (transfer == "do_not_transfer")
    In order to work with an individual widgets of a form field, obtain an object that represents the widget using the getField method as specifically demonstrated in example #2 in the documentation: http://livedocs.adobe.com/acrobat_sdk/9.1/Acrobat9_1_HTMLHelp/JS_API_AcroJS.88.476.html

  • How do I make Radio Button label clickable?

    In just plain HTML, the following code will allow me to click on the radio button label text to select that radio button:
      <label for="radio1">Radio Button label</label>
      <input type="radio" value="Selected" id="radio1" />
    How can I do the same thing using HTMLB?
       <htmlb:radioButton id      = "buttonAll"
                          text    = "All"
                          key     = "ALL"
                          tooltip = "View All" />
    Wrapping the htmlb:radioButton with a <label></label> does not work - any ideas?

    Hi Lisa,
    You have to also add the <b>disable</b> attribute to the following code. This is because, <i>if the radioButton is disabled it is not selectable.</i>
    Replace the code with:
    <htmlb:radioButton id = "buttonAll"
    text = "All"
    key = "ALL"
    tooltip = "View All"
    disabled="false"
    />
    I would also suggest you to wrap the htmlb:radioButton code in <htmlb:radioButtonGroup></htmlb:radioButtonGroup>
    Hope this Solves your problem.
    Regards
    Pravesh

  • Trying to create multiple lines of radio buttons on the same page. how do i do that??

    Greetings. I'm brand new to this, and am trying to create a form with multiple lines of radio buttons on a single page to send to my students.  How can I do this??  I currently have a table that I want the students to fill out and return, but every time I put radio buttons in, the form only allows selection of one of the 12 - I want students to be able to select one on each row.........

    Each group of three radio buttons for a row should have the same field name and different "Radio Button Choice" (see Options tab). So if you copy & paste the first row, be sure to rename the new ly added radio buttons.

  • How to enable a disabled radio button????

    Hi here is the problem i have, i have a number of radio buttons contained in a buton group, all the buttons bar the first one are disabled. The buttons are all drawn on a JPanel. What i want to be able to do is once the enabled button has been selected, I want to enable the next button in the gropu and also then disable the one that was previously enabled. Is there any way i can do this, below is the code i have for setting the group up, and trying the above probelm. Any help much appreciated Thanks.
    /* Function creates a radio button and adds it to the button group */
         public JRadioButton getRadioButton(String myString, boolean val)
              JRadioButton myButton=new JRadioButton(myString);
              myButton.setActionCommand(myString);
              myButton.addActionListener(myListener);
              myButton.setEnabled(val);
              group.add(myButton);
              return myButton;
    //adds the radio buttons to the panel, for each transition */
         public void addTranPan()
                   for(int i = 0; i < dCreate.char2.size(); i ++)
                   if (i == 0) mPanel.add(getRadioButton(dCreate.char2.elementAt(0).toString(),true));
                   else
    mPanel.add(getRadioButton(dCreate.char2.elementAt(i).toString(),false));
    public void ChangeButtonState()
    Component [] components = getContentPane().getComponents();
              for (int i = 0; i < components.length; i++)
                   Component c = components;
                   if (c instanceof JRadioButton)
                   JRadioButton rb = (JRadioButton) c;
                   rb.setEnabled(false);
                   if (c.getName().equals(ch)) //find button to enable
                   JRadioButton rb = (JRadioButton) c;
                   rb.setEnabled(true);
                   break;
              mPanel.repaint();

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class sol21 extends JFrame implements ItemListener {
    JRadioButton
       radio1 = new JRadioButton("One"),
       radio2 = new JRadioButton("Two"),
       radio3 = new JRadioButton("Three"),
       radio4 = new JRadioButton("Four");
      JRadioButton[] radios = {
        radio1, radio2, radio3, radio4
      int INITIAL_ENABLED = 0;
      public sol21() {
        ButtonGroup group = new ButtonGroup();
        JPanel panel = new JPanel(new GridBagLayout());
        GridBagConstraints gbc = new GridBagConstraints();
        gbc.insets = new Insets(5,0,5,0);
        gbc.anchor = gbc.WEST;
        gbc.gridwidth = gbc.REMAINDER;
        for(int j = 0; j < radios.length; j++) {
          radios[j].addItemListener(this);
          group.add(radios[j]);
          panel.add(radios[j], gbc);
          if(j == INITIAL_ENABLED)
            continue;
          radios[j].setEnabled(false);
        setContentPane(panel);
        setDefaultCloseOperation(EXIT_ON_CLOSE);
        setSize(300,200);
        setLocation(300,200);
        setVisible(true);
      public void itemStateChanged(ItemEvent e) {
        JRadioButton button = (JRadioButton)e.getItemSelectable();
        if(e.getStateChange() == ItemEvent.SELECTED) {
          int index = 0;
          for(int j = 0; j < radios.length; j++)
            if(radios[j] == button)
              index = j;
          radios[(index + 1) % radios.length].setEnabled(true);
          if(index == 0)
            index = radios.length;
          radios[(index - 1) % radios.length].setEnabled(false);
      public static void main(String[] args) {
        new sol21();
    }

  • How to hide parameters AUTOMATICLY based on radio buttons being pressed

    I have multiple radio buttons and with each radio button I have parameters that appear on screen for user to enter data.   Is there a way to make the selection blocks appear and disappear automatily based on the user  pressing the radio button?
    My current coed works only if I press the enter key but not automatily when the radio button is pressed.

    hi, have a look this example, it works as u want.
    SELECTION-SCREEN BEGIN OF BLOCK blk2 WITH FRAME TITLE text-002.
    PARAMETERS: r_ps TYPE c RADIOBUTTON GROUP rd DEFAULT 'X' USER-COMMAND abcd, "radio button server
                   r_as TYPE c RADIOBUTTON GROUP rd . "radio button for application server
    SELECTION-SCREEN END OF BLOCK blk2.
    SELECTION-SCREEN BEGIN OF BLOCK blk1 WITH FRAME TITLE text-001.
    PARAMETERS: p_pfile TYPE rlgrap-filename MODIF ID ccc, "presentation server input file
                    p_afile TYPE rlgrap-filename MODIF ID aaa. "application server input file
    SELECTION-SCREEN END OF BLOCK blk1.
    AT SELECTION-SCREEN OUTPUT.
      IF r_ps = 'X' .
        LOOP AT SCREEN.
          CASE screen-group1.
            WHEN 'CCC'.
              screen-input = 1.
              screen-invisible = 0.
              MODIFY SCREEN.
          WHEN 'AAA'.
              screen-input = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
          ENDCASE.
        ENDLOOP.
      ELSE.
        IF r_as = 'X'.
          LOOP AT SCREEN.
          CASE screen-group1.
            WHEN 'CCC'.
              screen-input = 0.
              screen-invisible = 1.
              MODIFY SCREEN.
          WHEN 'AAA'.
              screen-input = 1.
              screen-invisible = 0.
              MODIFY SCREEN.
          ENDCASE.
        ENDLOOP.
        ENDIF.
      ENDIF.
    START-OF-SELECTION.
    Regards

  • How to select radio buttons

    Hi All,
    i create 5 radio buttonss.
    assign one radio group for all radio buttonss.
    whenever i am clicking the first radio buttonnn
    after selecting the first radio buttonn
    automaticallyy the last radio button is selectedd.
    i don't want to create the last radio buttonn
    which radio button i selected only that radio button is selected
    remaining all r deselected
    for these radio buttonss
    i create a cell format layout under a flowlayout.

    When the last radio button is get select. I think you must be clicking on some save or submit button.
    What you have to do is to write the below method in Process Request in Controller.
    OAMessageRadioButtonBean appleButton = (OAMessageRadioButtonBean)webBean.findChildRecursive("GroupButtonOne");
    appleButton.setName("fruitRadioGroup"); // Radio Group Name
    appleButton.setValue("APPLES");
    OAMessageRadioButtonBean orangeButton =(OAMessageRadioButtonBean)webBean.findChildRecursive("GroupButtonTwo");
    orangeButton.setName("fruitRadioGroup"); // Radio Group Name
    orangeButton.setValue("ORANGES");
    OAMessageRadioButtonBean grapeButton = (OAMessageRadioButtonBean)webBean.findChildRecursive("GroupButtonThree");
    grapeButton.setName("fruitRadioGroup");// Radio Group Name
    grapeButton.setValue("GRAPES");
    OAMessageRadioButtonBean plumButton = (OAMessageRadioButtonBean)webBean.findChildRecursive("GroupButtonFour");
    plumButton.setName("fruitRadioGroup");// Radio Group Name
    plumButton.setValue("PLUMS");
    OAMessageRadioButtonBean mangomButton = (OAMessageRadioButtonBean)webBean.findChildRecursive("GroupButtonFive");
    mangomButton .setName("fruitRadioGroup");// Radio Group Name
    mangomButton .setValue("MANGO");
    Also assign some one VO Attribute to these radio Buttons.
    Thanks
    --Anil                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • How to disable when one radio button is selected

    Hi Folks,
    One of our requirement is as follows,
    Scenario: We have two columns with radio buttons and two dropdown box for the same columns to select the values.
    Requirement: When user select one radio button then the other radio button and its relevant dropdown both is disabled.
    Radio Buttons:
    Company
    EmpNo
    Dropdown Box:
    Company
    EmpNo
    If CompName Radio button is selected then Radio Buttom and Dropdown Box for Policy Id is disabled.
    Finally, The filter is applied on CompName to populate the values in dropdown
    Thanks Guys,
    KK

    look for a function like setActive or setDisable

Maybe you are looking for

  • RIM needs to look at the Playbook registration process and followon support

    First, this post is NOT about the pros/cons of the Playbook. Second, it is NOT about the quality of support I received, which was very good. It's about the Playbook registration and the need for support during or right after that initial registration

  • Windows 2003 SP2 = 2008 R2 SP1 Upgrade 62% Rollback

    Hello, we have to upgrade our Windows Server 2003 SP2 x64 (DC), to Windows 2008 R2 SP1. Unfortunately, a clean install is not an option. The server is a virtual machine. Therefore, first we make a clone, for a test upgrade, of the server. Adprep and

  • How to organize Places tags in Elements 12

    Hi I have assigned pictures to several different locations in Colorado using the Photoshop Elements 12 Organizer. Most of these locations are listed under "Colorado" category but one location persistantly lists under "CO". I have the same issue with

  • Brarchive - BR0301W - ORA-00257: archiver error

    Hi all, when calling /usr/sap/B16/SYS/exe/run/brarchive -u / -p initB16.sap -d rman_util -sd and there already is an archiver stuck I get the following error: BR0002I BRARCHIVE 7.20 (16) BR0006I Start of offline redolog processing: aehmrvjb.svd 2011-

  • I'm switcher, can anyone explain to me why my MB est strange ?

    Hi, first sorry for my english. Only one question, why my MB C2D go to 2Ghz when i put the battery ? But it will down to 1Ghz without the battery. I think that it isnt logic because high frequency means high electricity consomation, so normally when