Radio Buttons - need help

Hi,
How can I create radio buttons in JHeadstart 10.1.2.0??? Can anyone point me some examples or tutorials?
Can anyone help me on this??? This is very important!
Thanks,
Atena

Atena,
Please use the 10.1.2.2 release. Since that release supports radiogroups out-of-the-box.
In monitoring this forum we have to set priorities. This means that if a feature is addressed in a higher version we will advise people to upgrade to this version rather then describe how to add this feature in a previous point release. More so because the upgrade to 10.1.2.2. is very easy.
I hope you understand our position.
Regards,
Ton van Kooten
Oracle JHeadstart Team

Similar Messages

  • Simple "show / hide" script using radio buttons, need a little help

    Hello;
    I have a place in my form where I need to swap out what type of form you need to fill out in an area. If I don't do this, it makes the page look over crowded and if I pass it off to a 2 or 3 step process, it doesn't have enough info in each section to be worth it. It's either one or the other.
    Right now, this code works nice. click on a radio button, and the form section appears and disappears. What I am trying to make this do it when the page loads, one of the radio buttons is selected and one of the form sections is visible. Then if you click on the other radio button, it swaps them.
    can anyone help me tweek this code so one of the buttons is selected all the time?
    here is my script.
    <style type="text/css">
    .showHide {
    position: absolute;
    background-color: #f1f1f1;
    width: 350px;
    padding: 1px;
    color: black;
    border: #999999 2px dashed;
    display: none;
    </style>
    <script language="JavaScript">
    function setVisibility(id, visibility) {
    document.getElementById(id).style.display = visibility;
    </script>
    <form>
    <input name=type type=radio onclick="setVisibility('sub3', 'inline');setVisibility('sub4','none');" value='male' checked>Selection 1
    <input type=radio name=type value='female' onclick="setVisibility('sub3', 'none');setVisibility('sub4','inline');";>Selection 2
    <div id="sub3" class="showHide">Selection 1 content</div>
    <div id="sub4" class="showHide">Selection 2 content</div>
    </form>
    That's the short of it with out dumping tons of other code on anyone.
    Thank you

    That's what I need. I tweeked it a little and now it doesn't work. Can
    you help me add one last option? I need 3 buttons that intereact leaving the red one still visible when it loads unless you click on
    one of the others. this is what I'm trying to do:
    <script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
    <script type="text/javascript">
    $(document).ready(function() {
    $('#divGrey').hide();
    $('#divRed').show();
    $('#divBlue').hide();
    $('.grey').click(function(){
    //$(this).hide();
    $('#divGrey').show();
    $('#divRed').hide();
    $('#divBlue').hide();
    $('.red').click(function(){
    //$(this).hide();
    $('#divGrey').hide();
    $('#divRed').show();
    $('#divBlue').hide();
    $('.blue').click(function(){
    //$(this).hide();
    $('#divGrey').hide();
    $('#divRed').hide();
    $('#divBlue').show();
    </script>
    <style type="text/css">
    #divGrey {
    position: absolute;
    background-color: #f1f1f1;
    width: 350px;
    padding: 1px;
    color: black;
    border: #999999 2px dashed;
    display: none;
    #divRed {
    position: absolute;
    background-color: #f1f1f1;
    width: 350px;
    padding: 1px;
    color: black;
    border: #999999 2px dashed;
    display: none;
    #divBlue {
    position: absolute;
    background-color: #f1f1f1;
    width: 350px;
    padding: 1px;
    color: black;
    border: #999999 2px dashed;
    display: none;
    </style>
    <input type="radio" name="Radio1"  value="" id="RadioGroup1_1" checked="checked"  />Selection 1
    <input type="radio" name="Radio1"  value="checked" id="RadioGroup1_0" />Selection 2
    <input type="radio" name="Radio1"  value="checked" id="RadioGroup1_2" />Selection 3
    <div id="divRed">Selection 1 content</div>
    <div id="divGrey">Selection 2 content</div>
    <div id="divBlue">Selection 3 content</div>
    it isn't doing anything right now, and no errors either that I can see. Any ideas?

  • If scritp with Radio button - Please help

    Hi there.
    Please help me.
    in my form I have 4 Radio Buttons:
    1. Married
    2. Single
    3. Divorced
    4. Widowed
    (only one can be checked ... )
    now, there are following 6 input fields regarding the spouse.(like: name, family name etc....)
    im looking for script that all all other 6 fields regarding the spouse will be invisible. BUT if user checked:married, (only Married) all other 6 fields will become,ready for input + required.
    Thanks for your help.
    Please guied me step by spet, as im new with that.

    Have you tried to create 4 radio buttons all with the same name but different "Export" values and observed what happens when you check each button?
    You can see the value of the radio button group if you use the JavaScript console.
    Assuming you have named the radio buttons "Marital Status" then you can use the following code in the JavaScript console to observe the value available to JavaScript:
    this.getField("Marital Status").value;
    The Acrobat JavaScript Console (Your best friend for developing Acrobat JavaScript
    You then need to decide with what action to use to test the value of the radio button group and adjust the fields as needed.
    Since you will be using the same script for all radio buttons, I would suggest using a document level function to manipulate the spouse's fields. I would also use a hierarchical field name for the fields. Prefix all the spouse's field with "Spouse.".
    You then could use the following document level function in the "Mouse Up" action for each of the buttons:
    function CheckMaritalStatus(cStatus) {
    this.resetForm(["Spouse"]);
    this.getField("Spouse").required = false;
    this.getField("Spouse").display = display.hidden;
    this.getField("Spouse").readonly = true;
    if(cStatus == "Married") {
    this.getField("Spouse").required = true;
    this.getField("Spouse").display = display.visible;
    this.getField("Spouse").readonly = false;
    return true;
    You then use the following code for the "Mouse Up" action in each of the Radio Buttons:
    CheckMaritalStatus(this.getField(event.target.name).value);
    Entering Document Scripts

  • Global binding for radio buttons needs tweaking

    When selecting global binding for a text or numeric field, its corresponding field with the same name also changes to global binding.
    However when doing this for radio button exclusion groups, the other radio button groups don't automatically change to global. You have to do it manually.

    Found the problem in another topic:
    scott sheck - 1:30am Jun 29, 07 PST (#6 of 7)
    A pasted radio button is automatically added to an existing exclusion group if the last added item was a radio button. This is in the help.
    I wish there was a default to turn this off because I don't want to add a temporary item just to get a new exclusion group.

  • Create a back button - need help

    Hello JHS Team,
    I am using JHeadStart 10.1.2.
    I need to create a back button in a specific UIX page on my application.
    I'm new to JHeadstart and I really need some help from you. Can anyone help me???
    Thanks

    Atena,
    You can add the button to your page post-generation, using the UIX Visual editor. Make sure you uncheck the Generate Pages switch for this group in your application structure file to protect your change upon regeneration.
    May be an unsollicited advice:
    I understand that you are new to ADF, JDeveloper and UIX. UIX is superseded by ADF Faces in JDeveloper 10.1.3, and based on the JSF standard.
    UIX will not be further developed, JSF and ADF Faces are the technologies to use going forward. Therefore, I would recommend to consider to switch for your application development to JDeveloper and JHeadstart 10.1.3. For JDeveloper/ADF 10.1.3, there is an excellent developers guide available, that provides a lot of useful information, in particular when you are new to the ADF Framework.
    Note that a JHeadstart 10.1.2 UIX generated application can easily be migrated to 10.1.3, you will only need to redo your post-generayion changes. So may be you can try to stick (close) to 100% generation for now, and migrate to 10.1.3 at your earliest convenience.
    Steven Davelaar,
    JHeadstart Team.

  • CS4 Buttons - need help

    I have a question....I saw on a website once (I wish I could
    remember which site it was), flash buttons that were creatively
    animated.
    The button would appear just as text, but when you hovered
    over it, an image would rise from behind it, then, when you moused
    off, the image would go back down.
    It did this for each of the buttons and I cannot figure out
    how to get that to work, especially since in CS4 with AS3 you
    cannot use AS on a button.
    It's also really difficult to add a motion preset to a
    button....can anyone help?
    I've looked for tutorials on how to add a motion
    script/preset to a button however, I'm not finding anything at all.
    Am I making this more complicated than it needs to be?
    Should I put the button inside a movie clip and animate it
    that way? I'm not sure if that will work since I am trying to make
    an image appear behind the button when it's in it's OVER state.
    Is there an easier way for me to do this?
    Thanks.

    Whatever you do will require a movieclip playing a role
    somewhere along the line. For the scenario you described where the
    image slides out and back in, it is more likely entirely a
    movieclip.
    What you want to do is create a movieclip that has mouse
    event listeners that cause it to go to different frames for the
    different states of the 'button'. So in frame 1 you would have the
    'button' in its normal state, and a rollover could send it to frame
    2 where you have an animation movieclip play. Then, when you roll
    out you send it to another frame containing the reverse animation
    which sends it back to frame 1 as its last action.
    I thought I best add that the 'button' is the movieclip
    itself, there is no real button involved.

  • IDVD quits after clicking Burn button, need help.

    After clicking burn button on iDVD, the software quits.
    The message appears:
    The application iDVD quit unexpectedly.
    Mac OS X and other application are not affected.
    Click Reopen to open the application again. Click Report to see more details or send a report to Apple.
    part of the report:
    OS Version: 10.4.5 (Build 8H14)
    Report Version: 4
    Command: iDVD
    Path: /Applications/iDVD.app/Contents/MacOS/iDVD
    Parent: WindowServer [94]
    Version: 5.0.1 (626)
    Build Version: 26
    Project Name: iDVD
    Source Version: 6260000
    PID: 417
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x00000000

    I SEND MY THANKS TO LATVIA. YOUR REPLY SOLVED MY PROBLEM OF UNEXPECTED QUITS AFTER SEVERAL HOURS OF "HELP SEARCHING" ON THE INTERNET.
    SO MY ADVICE TO MAC USERS FROM OTHER COUNTRIES THAN ENGLISH AND COUPLE MORE SUPPORTED LANGUAGES: CHECK FIRST YOUR INTERNATIONAL SETTINGS

  • Can't add action script to my buttons, need help

    I'm trying to add action script to my buttons to link them but the script menu has the message "Current selection cannot have actions applied to it" Why is this happening?
    see attached

    Okay,
    I have a page where I have a button that states "PRODUCTS". I need to get
    the button to send the user to another page called "products.swf
    (products.fla)". What script to I insert in the actions menu?
    Thanks
    Derrick Young - Graphic Designer, Art Dept.
    (d) 403.250.4261 | (f) 403.250.4336 | www.calgarysun.com
    (e) [email protected] | (a) 2615 12th Street N.E., Calgary, AB
    T2E 7W9

  • Need Help on JSP Radio Buttons please

    How do i create radio buttons on a HTML file to link to other JSPs??
    do i have statements in my HTML that gets a JSP i.e option and then that runs the links to the other pages?
    please help very stuck and confused. Thanks

    Hi ..kinda new to java and jsp , worked with abit ...
    I have a problem have to solve. I have 2 jsp pages..one is for header displays a picture at top and has four radio buttons choices. Then at bottom of window is other jsp this jsp displays the result of whatever is choosen fromt he four buttons at top in the other frame from 1st jsp.
    I kinda have part of answer from your post about onclick. But how do i pass a value from the 1st jsp to the 2nd. jsp. There is some code in the second page that displays certian pages depending on what the value is from the four radio buttons.
    any help much appreciated :)

  • Radio Button w/Scroll Bar

    I must use action script, need some direction? I’ve
    tried lots of things, not working. I’m in Flash 8.
    I have long list (radio button), need user to scroll through
    the list and select a radio button. My BUTTON and IF statements
    will play a single VIDEO they selected.
    I tried embedding radio button into grid data, no luck? Any
    advice would help. Working code with-out scroll bars is attached.
    Thanks,
    Robert
    Houston, TX

    I must use action script, need some direction? I’ve
    tried lots of things, not working. I’m in Flash 8.
    I have long list (radio button), need user to scroll through
    the list and select a radio button. My BUTTON and IF statements
    will play a single VIDEO they selected.
    I tried embedding radio button into grid data, no luck? Any
    advice would help. Working code with-out scroll bars is attached.
    Thanks,
    Robert
    Houston, TX

  • Check box with Radio button functionality

    Hi All,
    I have a requirement like I need to have two check boxes on selection screen when ever I check one the other should be cleared with out pressing enter or any thing on selection screen just like radio button, all helpful answers are rewarded
    Thanks
    Giridhar

    Hi Karnam Giridhar,
    Try thee following code.
    PARAMETERS: test1 RADIOBUTTON GROUP sc1 DEFAULT 'X' user-command u1,
                test2 RADIOBUTTON GROUP sc1.
    PARAMETERS : p_file TYPE rlgrap-filename.
    AT SELECTION-SCREEN OUTPUT.
    if test2 is initial.
      loop at screen.
        if screen-name EQ 'P_FILE'.
             P_FILE  = ''.
             screen-input = '0'.
             modify screen.
        endif.
      endloop.
    endif.
    AT selection-screen.
    if not test2 is initial.
      loop at screen.
        if screen-name EQ 'P_FILE'.
          if screen-input eq '0'.
            screen-input = '1'.
            modify screen.
          endif.
        endif.
      endloop.
    endif.
    Regards
    Raj

  • Hide Radio Button

    HI Experts,
    I am using MVC and in a view that I have created I have a Radio Button group with 3 Radio buttons (Yes, No and Not Applicable).
    I do not want to display the 3rd Radio Button and the 3rd would be selected by default if any of the other two are not selected. But for the user, the Radio Button need not be shown.
    I could not find any feature in Radio Button in HTMLB which can do that. Is there a way out?? Jave script or any other way??
    Thanks for your help.
    Regards,
    Subhrangsu

    Hi Subhrangsu,
    You need only two radio buttons Yes and No .
    <htmlb:radioButtonGroup id="main">
    <htmlb:radioButtonGroup id="main">
    <htmlb:radioButton id="yes"
                        text = "Yes"
               on_Click = "yes" />
    <htmlb:radioButton id="no"
                        text = "No"
               on_Click = "no" />
    </htmlb:radioButtonGroup id="main">
    now in the eventhandler suppose you are storing the selected value in some variable lv_rbval .
    So I mean that there are only two radio buttons, in the eventhandler you can check
    if Yes is selected
    lv_rbval = 'yes'
    if No is selected
    lv_rbal = 'no'
    if any of the two radio buttons is NOT selected
    lv_rabval = 'NA'
    and every time the RB is selected a server side event will be trigerred so that you can update the value of lv_rbval..
    Hope I am clear now..
    Regards,
    Anubhav

  • Simple query reg radio button

    Hii All
    In my report i am creating two radio buttons normally when we create radio buttion text comes first then radio button comes
    But i want first radio button comes then corresponding text to my radio button appears
    Helpful Answers will be rewarded
    regards
    Hitesh

    Hi
    see this selection screen design
    TABLES EKKO.
    ********END OF DATA DECLARATIONS*********
    ********SELECTION SCREEN DESIGN ***********
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    PARAMETER : P_WERKS LIKE MARC-WERKS MODIF ID S1.
    SELECT-OPTIONS : S_EBELN FOR EKKO-EBELN NO INTERVALS MODIF ID S2.
    SELECTION-SCREEN END OF BLOCK B1.
    SELECTION-SCREEN BEGIN OF BLOCK B2 WITH FRAME TITLE TEXT-004.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS : R1 RADIOBUTTON GROUP G1 DEFAULT 'X'.
    SELECTION-SCREEN COMMENT 5(20) TEXT-002 FOR FIELD R1.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN BEGIN OF LINE.
    PARAMETERS : R2 RADIOBUTTON GROUP G1.
    SELECTION-SCREEN COMMENT 5(20) TEXT-003 FOR FIELD R2.
    SELECTION-SCREEN END OF LINE.
    SELECTION-SCREEN END OF BLOCK B2.
    ******END OF SELECTION SCREEN DESIGN****************
    double click that text elements and write what ever you want and activate it
    thats all

  • Where can I find and include the "record" radio buttons in Logic 9?

    Ok, I feel like a real dummy but for some reason when I installed the Logic 9 upgrade (upgraded from Logic 8) all the "record" radio buttons on the audio channel strips were missing. (They are there on the instrument channel strips.) Can anyone tell me how to get them back? I checked all the preferences I could find but somehow I'm not finding the one that will get me back my "record" radio buttons.
    Help!
    Mark

    They should be there on both. Only frozen SI tracks loose theirs (obviously), but my question earlier is irrelevant: even with no input selected there still ought to be a record button on the track header.
    OP: have you looked at the configuration of the track header? ctrl-click in it to find out.

  • How to display Radio buttons?

    Hi all,
    I have a textfield say P18_No_OF_RADIOS.In this if the user enters 4 then immediately below the textfield four radio buttons needs to be displayed with editale textfields for radio buttons so that user could give values for each radio buttons.If 5 then 5 radio buttons...i.e with respect to the number radio buttons needs to be displayed!Is it possible?
    ~thanks

    Hi sweetcha,
    Check out following link
    http://download.oracle.com/docs/cd/E10513_01/doc/apirefs.310/e12855/apex_item.htm
    In this link check out function APEX_ITEM.TEXT and APEX_ITEM.RADIOGROUP
    Of course the task which you have mentioned is very much feasible using this utility. Let me know if you find some issue in it.
    Sunil Bhatia

Maybe you are looking for

  • Method.invoke hangs?

    I'm trying to send a Class over a network, then invoke a Method inside the class.                         final Method command = clazz.getDeclaredMethod("exec");                         try {                             System.out.println("Invoked0")

  • Question regarding all entries

    code 1 Loop at int_cntry.              Select single * from zfligh into int_fligh where cntry = int_cntry-cntry. Append int_fligh.             Endloop. code2 Select * from zfligh appending table int_fligh             For all entries in int_cntry     

  • IOS app Validate : Error bundle is invalid.New apps and app updates submitted to the app store must be built with public?

    I am using Xcode 5.1 with SDK 7.1 I tried to validate  new version in appstore.But its failed.Error message:"Bundle is invalid.New apps and app updates submitted to the app store must be built with public?" On Apirl 18  ,I can submit last version

  • CK11N, not using PIR for material valuation.

    Hi, I am trying to run CK11N, material valuation for purchased part using PIR strategy. My valuation variant has the following strategy: 1. standard price. 2. price from purchase info record. and I've also configured the sub-strategy for #2 above. Th

  • Customer information screen not showing when installing photoshop CS2 -- cannot enter serial number

    I own Adobe Premier CS2. When I run photoshop installation, customer information screen is not showing. So I cannot enter serial number. I have serial number.