I want to click on text of radioButton....

I inserted a htmlb:readioButtonGroup into my Application.
I noticed that the radioButton can only be activated by clicking on the button itself, not by clicking on the text. Is there any way to enable this?
<htmlb:radioButtonGroup id   = "rbgrp">
  <htmlb:radioButton id      = "rdb1"
                     text    = "<%= lv_txt %>"
                     key     = "<%= lv_key %>"
                     checked = "<%= lv_checked %>"
                     tooltip = "bla" />
</htmlb:radioButtonGroup>

i use the following code and this allows me to click the text to selecte the radiobutton.
<htmlb:radioButtonGroup id          = "RBG2"
                                      columnCount = "3"
                                      selection   = "<%= r2sel  %>"
                                      width       = "100%" >
                <htmlb:radioButton id      = "RB21"
                                   text    = "Daily"
                                   checked = "TRUE" />
                <htmlb:radioButton id     = "RB22"
                                   text   = "Month End" />
                <htmlb:radioButton id     = "RB23"
                                   text   = "Year End" />
              </htmlb:radioButtonGroup>
Regards
Raja
Message was edited by: Durairaj Athavan Raja

Similar Messages

  • Double-click on text in dialog programming

    Hi,
    I have a screen on which I have created a TEXT button and I want to respond it to double click event.
    I have selected the attribute 'Respond to Double click' and in the GUI status under F2 put the code 'PICK' and changed in the PAI logic of the program to process certain steps if 'ok-code = 'PICK'.
    and it is working fine, when I double click the text button, the ok_code is 'PICK' and the req. steps are carried out. But the problem is, when I single click on the text button also, ok_code is becoming 'PICK' and the same steps are carried out. I want the text button to respond only to double click event not single click.
    Pls. let me know how do I achieve it.
    Thanks in advance,
    Vishnu priya

    Hi Priya,
    To best of  my knowledge it is not responding to double click, it it responding to your first click only, then you continue clicking the second time by that time the control goes back to application server withinn which time no user actions are accepted until the control passes back to the presentaion server.
    that is why we can not distinguish between single and double click.
    try double clicking on SE38 DISPALY or CHANGE Buttons they also respond and it will not give you a message saying DON'T DOUBLE CLICK ME etc.
    this is to best of my knowledge.
    regards
    Ramchander Rao.k

  • I have Adobe Photoshop Elements 10. It came installed on my HP Desktop. I am can not get the warp text tool to work. It has worked in the past. Once I click warp text, the little window does not pop up, and if I try to do anything else after I click warp

    I have Adobe Photoshop Elements 10. It came installed on my HP Desktop. I am can not get the warp text tool to work. It has worked in the past. Once I click warp text, the little window does not pop up, and if I try to do anything else after I click warp text, it wont let me. Just sounds the ding, alert, can still slightly navigate the program but can not use any other tools after clicking warp text. I just have to open task manager and close the program. not sure if I'm doing something wrong or maybe I just need to uninstall and re install. Having trouble finding out how to uninstall and reinstall because the program came pre installed on my desktop.

    It actually sounds like the warp text window is opening off screen.
    Resetting the photoshop elements 10 preferences should fix it.
    *Press and hold the Shift+Ctrl+Alt keys just after you start the launch of the photoshop elements 10 editor
    *Keep holding the keys down until you get a dialog asking if you want to delete the adobe photoshop elements setting file
    *Press Yes

  • I want  to display a text when button pressed

    Hi guys
    I want to display a text when a button is pressed , but the compiler says cannot resolve variable text ,can you please help me
    here is my program
    import  java.awt.Color .*;   import java.awt .*; import java.awt.event.*; import java.awt.event.*;   import javax.swing.*; import javax.swing.JTable.*;   public class sannaa extends JFrame implements  ActionListener {[code] public sannaa( )  {
    super("����� ������" ); setLayout(new FlowLayout()); TextField text = new TextField(20); JButton ok=new JButton( "return"   ); add(text); ok.addActionListener(this);  
    Container   contentPane  =  getContentPane(    ); 
    JLabel hellolabel=new JLabel("google"); hellolabel.setForeground(Color.black); hellolabel.setBackground(Color.blue);   String[ ] columnNames =
    {"First Name",   "Last Name", "Sport",
                             "# of Years",
                             "Vegetarian"};
                            Object [    ][     ] data =
    {"Mary", "Campione", "Snowboarding", new Integer(5), new Boolean(false)},
    {"Alison", "Huml", "Rowing", new Integer(3), new Boolean(true)},
    {"Kathy", "Walrath", "Knitting", new Integer(2), new Boolean (false)},
    {"Sharon", "Zakhour", "Speed reading", new Integer(20), new Boolean(true)},
    {"Philip", "Milne", "Pool", new Integer(10), new Boolean(false)} };
    JTable table = new JTable(data, columnNames); JButton enter=new JButton( "search"   ); ok.setBackground(Color.pink); ok.setForeground(Color.white); JFrame frame=new JFrame("EL  "); enter.setMaximumSize(new Dimension(900,
                                           100)); enter.setForeground(Color.blue); contentPane.setBackground( Color.white); for(int i=0;i<10;i++) {[code]JButton rami=new JButton( ""+ "" +i );
    contentPane.add(rami);
    rami.setBackground(Color.blue); }
    contentPane.add(ok);
    JPanel panel=new JPanel(new BorderLayout(500,500) ); contentPane.setLayout(new FlowLayout( )); contentPane.add(panel); panel.add(enter,  BorderLayout.PAGE_START); panel.add(table, BorderLayout.PAGE_START); panel.add(hellolabel,  BorderLayout.PAGE_START); panel.setBackground( Color.white ); panel.setLayout(new BorderLayout()); panel.add(table.getTableHeader(),BorderLayout.PAGE_START )  panel.add(table, BorderLayout.CENTER); panel.add(hellolabel,BorderLayout.PAGE_END);   setVisible(true); }
    public void actionPerformed(ActionEvent   e  ) {  [code] text.setText("Button Clicked ");
    public static void main (String [] args) {[code] sannaa van=new sannaa( );
    } }  

    Thanks
    I have changed my program to the following and its compiled truely, but when I press thte button in the application no text appeared?
    help me please
    import  java.awt.Color .*;   import java.awt .*; import java.awt.event.*; import java.awt.event.*;   import javax.swing.*; import javax.swing.JTable.*;    public class sannaa extends JFrame implements  ActionListener { 
    public sannaa(   ) {
    super("����� ������" ); JButton ok=new JButton( "return"   );
    ok.addActionListener(this);  
    Container   contentPane  =  getContentPane(
    JLabel hellolabel=new JLabel("google");
    hellolabel.setForeground(Color.black); hellolabel.setBackground(Color.blue);
        String[ ] columnNames =
    {"First Name",   "Last Name", "Sport",
                             "# of Years",
      "Vegetarian"};
                            Object [    ][     ] data =
    {"Mary", "Campione", "Snowboarding", new Integer(5),
    new Boolean(false)},
    {"Alison", "Huml", "Rowing", new Integer(3), new
    Boolean(true)},
    {"Kathy", "Walrath", "Knitting", new Integer(2),
    new Boolean (false)},
    "Sharon", "Zakhour", "Speed reading", new
    Integer(20), new Boolean(true)},
    {"Philip", "Milne", "Pool", new Integer(10),
    new Boolean(false)} };
    JTable table = new JTable(data,
      columnNames); JButton enter=new JButton( "search"
         ); ok.setBackground(Color.pink); ok.setForeground(Color.white); JFrame frame=new JFrame("EL  "); enter.setMaximumSize(new Dimension(900,
      100));
    enter.setForeground(Color.blue); contentPane.setBackground( Color.white);
    for(int i=0;i<10;i++) {  [code]JButton rami=new JButton( ""+ "" +i );
    contentPane.add(rami);
    rami.setBackground(Color.blue); }
    contentPane.add(ok);
    JPanel panel=new JPanel(new
      BorderLayout(500,500) ); contentPane.setLayout(new FlowLayout(
      )); contentPane.add(panel); panel.add(enter,  BorderLayout.PAGE_START);
      panel.add(table,
      BorderLayout.PAGE_START); panel.add(hellolabel,
       BorderLayout.PAGE_START); panel.setBackground( Color.white ); panel.setLayout(new BorderLayout());   panel.add(table.getTableHeader(),BorderLayout.PAGE_START ) ;
       panel.add(table, BorderLayout.CENTER);
    panel.add(hellolabel,BorderLayout.PAGE_END);
       setVisible(true); }
    public void actionPerformed(ActionEvent   e  )
      {  [code] TextField text=new TextField ("") ;
    text.setText("Button Clicked     ");     }
    public static void main (String [] args)
    sannaa van=new sannaa( ); } }  

  • I created a banner for my site. On that banner I want to create a text animation preferibly in flash

    cs4. I need the text to appear throught the left side an on to the middle of the banner and dissapear. I also need animated text to come in through the right side and do the same.
    Can anybody give me somne ideas or links to videos where I can ssee how is done?
    Thnak tyou

    click on the text symbol and create static text that you want to animate.  when finished, right click the text and click convert to symbol/movieclip.  then use the timeline to motion tween and alpha tween your movieclip.

  • How do i block a contact from my iphone? I dont want to receive a text message from that contact anymore.Thanks

    How do i block a contact from my iphone? I dont want to receive a text message from that contact anymore.Thanks

    click your phone app, tap on contacts, choose the contact you want to block, scroll down and click "block this caller"

  • I have a scanned doc that I copied onto a word doc.  the scanned document text was crooked.  I want to straighten the text.  How do I do that

    I have a scanned doc that I copied onto a word doc.  the scanned document text was crooked.  I want to straighten the text.  How do I do that

    If it is an image you could simply click on the image in word and then use the green dot that appears above the image to simply drag and rotate the image around. Alternatively, import it into iPhoto and use the rotation capabilities in that, click edit and then quick fixes and rotate. (Then export back into word).

  • When i click on text tool the photoshop CS5 not responding

    hey guys
    i have problem in photoshop CS5
    that is when i click on text tool the photoshop not responding and i cann't do anything when i click on text tool the photoshop not responding and when i want to close photoshop i just have one way it's from task .
    so how can i solved this problem because my all work on the photoshop it's texts please help me and thank you so much adobe

    Select the Text Tool
    Then right click on its' icon in the Option bar.
    Select "Reset Tool" from the pop-up menu.
    Any questions, get back to me.
    Gene

  • I click the text tool and it immediately has a border? how do i eliminate this?

    I click the text tool and it opens a new text box with what appears to be a border? How do I eliminate this and get rid of the border on prior text boxes?

    Relax. That's a non-printing guide. If you ever want it to print, go to the Graphic Inspector and choose Stroke > Line. You can then adjust the interior space in the Text Inspector > Text > Inset Margin.
    Walt

  • I want to bring in text from Word (and the web) that is already hyperlinked into InDesign. How do I do it while keeping the links active?

    I want to bring in text from Word (and the web) that is already hyperlinked into InDesign. How do I do it while keeping the links active?
    Whenever I copy/paste from web or Word it removes the hyperlinks.  And when I try to do it by "Place"ing a Word document into my InDesign project it keeps the formatting with it, the rectangles around the text.
    I have the latest version of InDesign.
    Any help is appreciated. 

    Copy-and-paste may not include formatting. A regular import using Place is the best way.
    The rectangles around the hyperlinks are just to indicate they are links -- they do not print, but they do show up in your PDF.
    You can remove them by double-clicking the hyperlink in the Hyperlinks panel and select "Invisible Rectangle" as type.
    Typically, Word hyperlinks are formatted -- blue text, underline -- with a Character Style. If you want to remove or change the formatting, all you have to do is change the character style. My experience, though, is you must check all hyperlinks because for no apparent reason sometimes they appear in the document without the character style.

  • How to read text file by clicking on text file ?

    Hello.. friends
    I have made a java editor. I want to pass file name to a function in application by clicking on particular text file.
    I assoiciated *.text file type with my application. when I click on text file application is run but I file is not read by my java application.
    For example : in windows System all text are oppened in notepad when we click on any text file.
    How to do this thing. please suggest me and if possible show me a sample code.
    Thanks

    If you are doing this in a web application you can set the content type appropriately and the file will open.
    If you are doing this standalone you can use the Java RunTime class and execute something like this as the command "notepad.exe c:\\myfile.txt" which should open it up on a Windows operating system.

  • Newbie-Click for Text

    Rookie question. I want learners to be able to click various areas on a screen and get a text box with more detail. Have set up click spots with the text box as a Success Caption and set Timing to Rest of Slide (there is no Rest of Project option). But once the user clicks the spot and gotten the text box once, the text box won't appear when they click a second time, though the cursor still turns to a hand when it enters that area on the screen. It's like they were successful, so it's done!? There's GOTTA be a way to do this simple task. What am I missing?

    Thanks, Rick. I'll give it a try. I think this is a little amusing. There are so many what seem to be more complex things available so simply in Captivate and this that seems so simple isn't!?!?  Other than this, I am very impressed with Captivate. Being an original Authorware user, I'm finding Captivate is very cool!!
    Date: Fri, 4 Jun 2010 11:03:21 -0600
    From: [email protected]
    To: [email protected]
    Subject: Newbie-Click for Text
    Hi again
    Okay, Click and Show can be accomplished using Advanced Actions. Basically you insert the objects you wish to show, name them appropriately and turn off their visibility. Then you create Advanced Actions to show them.
    I offer an eBook that covers Advanced Actions in some pretty deep detail. Or if you want, you can just keep going back and forth in the forums asking questions where you find you are blocked. Your call.
    Cheers... Rick
    | http://www.robowizard.com/pc.gif | Helpful and Handy Links
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=5
    http://www.ShowMeSolutions.biz
    http://sorcererstone.wordpress.com/
    http://www.gooberguides.com |
    >

  • IPhone5s no keyboard clicks or text sounds

    I've just bought an iPhone5s. Lovely!  But I can't get it to sound keyboard clicks or text arrival. I can hear them in the settings menu and all other sounds are ok. Have tried reboot and fiddling.with the volume - no luck.  Advice appreciated or please Apple tell me these don't work - I'd be miffed but at least would know it's the phone and not me!

    Hi Junquet,
    If you aren't hearing keyboard sounds or text alerts, but you are hearing other sounds, you may want to double check to make sure these sounds haven't been turned off. You may find the following article helpful:
    iOS: Understanding sounds, ringtones, and alerts
    http://support.apple.com/kb/HT5800
    Regards,
    - Brenden

  • Want to scan to text file on hp oj8600, software indicates only pdf or jpg file creation

    want to scan to text file on hp oj8600, software indicates can do. However printer system software only allows pdf or jpg file type creation.

    Hello @Richf95,
    Welcome to the HP forums.
    I understand that you are trying to save scans as a text file.
    I would like to help.
    PDF has become the standard file type used when scanning/saving a document.
    Most printers will not have text as a default option.
    Try the following:
    Open the HP scan utility
    In the lower left hand corner select 'Create New Shortcut...'
    Name your new short cut. I went with Text.
    In the next window select the file tab.
    In the drop down menu, select Text.
    This should create a shortcut that will allow you to save scans as a .txt file.
    Aardvark1
    I work on behalf of HP
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!

  • My deleted contacts still show up when I want to send a text message

    My deleted contacts still show up when I want to send a text message. But when I go to my address book there not there only when I want to send a text MSG there name comes up and if I select them it only show there number not name in the message.  How an I get rid of that

    This is a big problem!!!!!! Deleting is deleting!
    I'm surprised more people aren't annoyed by this bizarre Apple tech problem.
    I love my Apple iPhone, but...
    This problem is enough for me not to buy another iPhone :(
    This should be simple to solve, Apple...right???????????????????
    Dear Apple, PLEASE FIX this BUG in NEXT UPDATE asap !!!!!!!!!!!!!!!!
    Most appreciated.

Maybe you are looking for