WDABAP: radio button tutorials

Hi,
Are there any examples or tutorials for radiobuttongroup bykey and group by index?  I haven't been able to find them in the SWDP DEMO TUTORIAL package

Hi,
have you seen this? http://help.sap.com/saphelp_nw2004s/helpdata/en/bb/69b441b0133531e10000000a155106/frameset.htm and http://help.sap.com/saphelp_nw2004s/helpdata/en/d7/f08841e3af1609e10000000a155106/frameset.htm and  http://help.sap.com/saphelp_nw2004s/helpdata/en/37/a6884121a41c09e10000000a155106/frameset.htm and in the system WDR_TEST_EVENTS.
Regards, Heidi

Similar Messages

  • Radio buttons not working in Opera 9.25

    Radio buttons which I have created in a form work fine with
    Internet Explorer, Firefox and Safari, but disappear when I open
    the form in Opera 9.25. All I see are the words next to the space
    where the buttons should be. Is there something special I need to
    do for Opera to make them show?

    Does the page validate?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "ReneeFS" <[email protected]> wrote in
    message
    news:fp75c2$5ht$[email protected]..
    > Radio buttons which I have created in a form work fine
    with Internet
    > Explorer,
    > Firefox and Safari, but disappear when I open the form
    in Opera 9.25. All
    > I
    > see are the words next to the space where the buttons
    should be. Is there
    > something special I need to do for Opera to make them
    show?
    >
    > <input type="radio" name="radio" id="Visa_yes"
    value="Visa_yes" />
    > Yes
    > <input type="radio" name="radio" id="Visa_no"
    value="Visa_no" />
    > No </label>
    >

  • Radio buttons and PHP

    I am having a problem getting radio button data into php and I can not seem to find any answers. My project is simple I have a group of radio buttons, when one is selected and a submit button is pressed I want the data from the radio button to populate the subject line of an email and send it. It sounds simple but I am having a lot of problems figuring it out and would appreciate any help I can get. I am good (not great) with flash, ok with PHP but for some reason this is taking a long time to fugure out. I can make a form work with input fields but not with radio button data.

    Use variables, not the text field var option from the Properties panel... not a reliable resource.  Give the textfield an instance name and use its text property to assign the value to a variable.
    I haven't dealt with AS2 to PHP much, but are you using the LoadVars class to manage getting the data to the PHP file?  I think the send() or sendAndLoad() methods are what you want to use.
    If you search Google using "AS2 LoadVars" you are likely to find a number of helpful tutorials, including those that focus on PHP being in the picture.

  • How to define RADIO BUTTONS in MODULE POOL PROG.?

    Hi Experts,
    I need to keep the RADIO BUTTONS in 1000_screen of my_module_pool prog., like,
    I hv 2 fields in this screen, as expected, the first shuld hv DEFAULT selection.
    So, I just simply, dragged & dropped 2 radio buttons from left menu of the screen builder & given them the  names as
    R_SUMMARY
    R_DETAIL
    Then i executed the transaction, but, these above 2 fields are getting selected, as default??
    I know that, if its a REPORT prog. we can define as w/ a GROUP, then the 1st one is hv the default selection.
    so,
    1  - How to define RADIO BUTTONS in this screen of a module pool prog.
    2 - How to use these names in the prog.(PAI - i guess)?
    thanq
    Edited by: Srinivas on Jul 12, 2008 11:59 PM

    Hi Srinivas,
    Please check this link
    Re: urgent:Regd radio buttons in module pool
    http://saplab.blogspot.com/2007/10/sample-abap-program-for-module-pool_18.html
    http://****************/Tutorials/ABAP/Checkbox/page1.htm
    http://****************/Tutorials/ABAP/Checkbox/page2.htm
    Best regards,
    raam

  • Navigate pages of tab control with radio buttons

    hi guy,
    i need to navigate 7 pages of a tab control container usings custom buttons. that is, when i click on a button, i takes me to the specific page on the tab control container.
    i think this can be done using radio buttons and tab control container, but i dnt really know how. please any help will be appreciated.
    thanks....

    Hi jiggaharry,
    I think I may have a link that addresses you issue. Do have a look at this link:
    Navigate Tab Control with Custom Buttons:
    http://forums.ni.com/ni/board/message?board.id=300​&message.id=6123
    We have a vast array of data on ni.com for examples and tutorials which could be very helpful in your code development. Do feel free to browse through and use the examples are they are all free of charge
    Hope the link is useful to you.
    Regards,
    Manick | AE | NI ASEAN

  • Simple PHP radio buttons

    Hi. I'm trying to program some radio buttons to put in an ASP
    form, using PHP coding. I just need something simple for three
    yes/no questions.
    I've looked around online and haven't found anything of much
    help. Any help is appreciated.
    Thanks. :)

    Well, that's probably not the best example. Let's try this
    one -
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
    http://www.w3.org/TR/html4/strict.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">
    <title>Radiobutton Test</title>
    </head>
    <body>
    <?php
    if (isset($_POST['submit']) && $_POST['submit'] ==
    'SUBMIT') {
    echo "Radiobutton = " . $_POST['radiobutton'] . "<br
    />";
    ?>
    <form name="form1" method="post" action="">
    <label for="radiobutton">red</label>
    <input name="radiobutton" type="radio" value="red"
    id="redbutton">
    <label for="label">green</label>
    <input name="radiobutton" type="radio" value="green"
    id="greenbutton">
    <label for="radio">blue</label>
    <input name="radiobutton" type="radio" value="blue"
    id="bluebutton">
    <input type="submit" name="submit" id="submit"
    value="SUBMIT">
    </form>
    </body>
    </html>
    You can see it working here -
    http://www.murraytestsite.com/radiobuttontest.php
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > There's still a good deal of information missing here.
    Perhaps a look at
    > this code/page will help you figure out what needs to be
    added to your PHP
    > script -
    >
    > <?php
    >
    > if (isset($_POST['submit']) && $_POST['submit']
    == 'SUBMIT') {
    > foreach($_POST as $key => $value) {
    > echo $key . " => " . $value . "<br>";
    > }
    > exit();
    > }
    >
    >
    > ?>
    > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
    > "
    http://www.w3.org/TR/html4/strict.dtd">
    > <html>
    > <head>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=iso-8859-1">
    > <title>Radiobutton Test</title>
    > </head>
    >
    > <body>
    > <form name="form1" method="post" action="">
    > <label for="radiobutton">red</label>
    > <input name="radiobutton" type="radio" value="red"
    id="redbutton">
    > <label for="label">green</label>
    > <input name="radiobutton" type="radio" value="green"
    id="greenbutton">
    > <label for="radio">blue</label>
    > <input name="radiobutton" type="radio" value="blue"
    id="bluebutton">
    > <input type="submit" name="submit" id="submit"
    value="SUBMIT">
    > </form>
    > </body>
    > </html>
    >
    > Your script will need to pick up the value of the
    radiobutton group, as I
    > have done above, and add it to the body of the mail
    message.
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    > ==================
    >
    >
    > "Quiet Winter" <[email protected]>
    wrote in message
    > news:[email protected]...
    >> Yes, it seems I'm confusing you, so I'll post it.
    The HTML not working
    >> thing
    >> was actually something to do with my FTP provider,
    so I won't even go
    >> into that
    >> anymore, since it's off-subject for what you can
    help me with.
    >>
    >> Here's my PHP script:
    >>
    >> <?php
    >>
    >> $EmailFrom = "[email protected]";
    >> $EmailTo = "[email protected]";
    >> $Subject = "Referral Information";
    >> $Name = Trim(stripslashes($_POST['Name']));
    >> $Date = Trim(stripslashes($_POST['Date']));
    >> $Address = Trim(stripslashes($_POST['Address']));
    >> $City = Trim(stripslashes($_POST['City']));
    >> $State = Trim(stripslashes($_POST['State']));
    >> $Zip = Trim(stripslashes($_POST['Zip']));
    >> $Email = Trim(stripslashes($_POST['Email']));
    >> $Phone = Trim(stripslashes($_POST['Phone']));
    >>
    >>
    >> $validationOK=true;
    >> if (Trim($Name)=="") $validationOK=false;
    >> if (!$validationOK) {
    >> print "<meta http-equiv=\"refresh\"
    content=\"0;URL=error.htm\">";
    >> exit;
    >> }
    >>
    >> $Body = "";
    >> $Body .= "Name: ";
    >> $Body .= $Name;
    >> $Body .= "\n";
    >> $Body .= "Date: ";
    >> $Body .= $Date;
    >> $Body .= "\n";
    >> $Body .= "Address: ";
    >> $Body .= $Address;
    >> $Body .= "\n";
    >> $Body .= "City: ";
    >> $Body .= $City;
    >> $Body .= "\n";
    >> $Body .= "State: ";
    >> $Body .= $State;
    >> $Body .= "\n";
    >> $Body .= "Zip: ";
    >> $Body .= $Zip;
    >> $Body .= "\n";
    >> $Body .= "Email: ";
    >> $Body .= $Email;
    >> $Body .= "\n";
    >> $Body .= "Phone: ";
    >> $Body .= $Phone;
    >>
    >>
    >> $success = mail($EmailTo, $Subject, $Body, "From:
    <$EmailFrom>");
    >>
    >> if ($success){
    >> print "<meta http-equiv=\"refresh\"
    content=\"0;URL=sent.html\">";
    >> }
    >> else{
    >> print "<meta http-equiv=\"refresh\"
    content=\"0;URL=error.htm\">";
    >> }
    >> ?>
    >>
    >> The form is mostly fill-ins, as you can see, and I
    want to add three
    >> yes/no
    >> questions.
    >>
    >

  • Branching based on radio button response

    Hi.
    I want three radio buttons on a slide that the user can only select one of. Based on the choice I wish to branch to one of three different paths of slides. Can anyone please point me in the direction of any tutorial or examples of how this is done please.
    Many thanks.

    You can link the action 'Jump to slide X' to the radio button X. You have to be aware that at the end of the X-series of slides, you will have to direct to perhaps an 'end slide' p.e. by linking a similar action 'Jump to End slide' to the End of the last slide of the X-slides. Same for the Y-button, Z-button, etc.
    To have a visual idea of the linking, you can switch to the Branching View.
    Another approach is to make 4 movies. In the first you make the slide with the radio buttons, link the action 'Open project X' to X-button, etc.
    Just a tip: can you mention the version of CP when posting a question on this forum?
    As for tutorials, check the Adobe team blog: blogs.adobe.com/captivate or the blog of R Jacquez (both are mentioned in the main page of this forum). Have a look perhaps at http://blogs.adobe.com/captivate/2009/03/roundup_of_captivate_events.html

  • DropDown with dymica radio button

    Hi frnds,
    I am facing a problem with dropdown and the radio button i,e
    radio buttons will generate dynamically based on the drop down.
    now when i select one drop down   i can find the dymica generation of the radio button like  suppose
    dropdown -
    here
    rad1    rad12     rad 13     with radio group rg1
    rad2    rad22     rad23      with radio group rg2.
    so on...
    so when i select the dropdown 1 and select rad1   and rad22
    and suppose i change the drop down and iam seeing those radio's already selected which i don't want to .. i want them to refresh
    bhavana

    You can do this easily using client-side scripting - such as JavaScript. A good place to start learning this is at [http://www.w3schools.com|http://www.w3schools.com]. Lots of tutorials and samples.
    Cheers
    Graham Robbo

  • Form Button Edit, Radio button

    I insert a radio button in a form , it has the button
    followed by a long space afterwards, this is the case with all
    other types of buttons.
    How do I edit the length of these boxes, particularly with
    the radio button. I only want the button, not the length of nothing
    that follows. I've been through all properties, but there is not
    option to control length, etc.

    Show us the whole page, please.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "jkix" <[email protected]> wrote in message
    news:flgsmr$6hn$[email protected]..
    > this is an html page, i am working with dreamweaver mx
    2004.
    >
    > .main_0 { width:776px;}
    > .main { width:776px;}
    > #header {height:259px;}
    > #footer { height:87px;}
    >
    > /*---page---*/
    > #page #wrapper .row .column{ width:463px; float:left;}
    > #page #wrapper .row .column_1{ width:247px; float:left;}
    >
    > #page #wrapper .row_1 .column{ width:245px; float:left;}
    > #page #wrapper .row_1 .column_1{ width:236px;
    float:left;}
    > #page #wrapper .row_1 .column_2{ width:192px;
    float:left;}
    > /*---// page---*/
    >
    > /*---page_1---*/
    > #page_1 #wrapper .row .column{ width:362px; float:left;}
    > #page_1 #wrapper .row .column_1{ width:348px;
    float:left;}
    > /*---// page_1---*/
    >
    > /*---page_2---*/
    > #page_2 #wrapper .row .column{ width:261px; float:left;}
    > #page_2 #wrapper .row .column_1{ width:449px;
    float:left;}
    > /*---// page_2---*/
    >
    > /*---page_3---*/
    > #page_3 #wrapper .row .column{ width:463px; float:left;}
    > #page_3 #wrapper .row .column_1{ width:247px;
    float:left;}
    >
    > #page_3 #wrapper .row_1 .column{ width:366px;
    float:left;}
    > #page_3 #wrapper .row_1 .column_1{ width:298px;
    float:left;}
    > /*---// page_3---*/
    >
    > /*---page_4---*/
    > #page_4 #wrapper .row .column{ width:362px; float:left;}
    > #page_4 #wrapper .row .column_1{ width:348px;
    float:left;}
    >
    > #page_4 #wrapper .row_1 .column{ width:710px;}
    > /*---// page_4---*/
    >
    > /*---page_5---*/
    > #page_5 #wrapper .row .column{ width:261px; float:left;}
    > #page_5 #wrapper .row .column_1{ width:449px;
    float:left;}
    > /*---// page_5---*/
    >
    > /*---page_6---*/
    > #page_6 #wrapper .row_1 { width:710px;}
    > /*---// page_6---*/
    >

  • Understanding radio buttons, conditions

    Hi,
    I wondered if anyone can help me get my noggin' around this?
    I'm trying to create a survey form in Designer that has the following requirements.
    The survey will have a series of 13 questions, many of them requiring 'yes' and 'no' answers - then calculations based upon them.
    I'm using radio buttons for users to select either yes or no.
    Depending upon whether a user chooses 'yes' or 'no' the form needs to run different calculations.
    Hypothetically an example might be: Do you have water-effient shower roses installed in your bathroom? Yes (radio button) No (radio button).
    If you answer 'yes', the form runs a calculation, if you answer 'no' the form runs another calculation based on a higher rate of water usage.
    Using FormCalc how do I write this?
    Using the radio buttons has thrown me! I'm sure it'd be something along the lines of:
    If 'yes' then {
    Sum(HouseholdTotal * MinuteShower * 52.5)
    else
    If 'no' {
    Sum (HouseholdTotal * MinutesShower * 84)
    Probably way off the mark but if anyone can steer me in the right direction it'd be legendary.
    Thanks in advance.

    Does the page validate?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "ReneeFS" <[email protected]> wrote in
    message
    news:fp75c2$5ht$[email protected]..
    > Radio buttons which I have created in a form work fine
    with Internet
    > Explorer,
    > Firefox and Safari, but disappear when I open the form
    in Opera 9.25. All
    > I
    > see are the words next to the space where the buttons
    should be. Is there
    > something special I need to do for Opera to make them
    show?
    >
    > <input type="radio" name="radio" id="Visa_yes"
    value="Visa_yes" />
    > Yes
    > <input type="radio" name="radio" id="Visa_no"
    value="Visa_no" />
    > No </label>
    >

  • 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

  • Partially rendered radio button components

    I've been using the radio button component for the first time
    - it works a treat! However, when they are initially rendered on
    screen the labels are slightly cropped from the right and below
    (this is with the label to the right of the button). The button
    itself is also displaced upwards slightly. When the mouse runs over
    the button it immediately renders correctly.
    In every other respect the buttons function correctly. Any
    ideas?
    Bob

    No, I don't know any tutorials.   I do not try to create components... just objects that perform like them to the degree I need them to.  I pretty much just design the radio itself as a movieclip that has the different states in different frames (unselected, selected, disabled) and create actionscript to manage moving around within it as well as parent level code to manage groups of them such that selecting one deselects others and stuff.

  • Using a Radio Button to Disable Multiple Checkboxes

    Hi everyone,
    My name is Christian and I am trying to design a form using Adobe Designer 7 that when a user selects a group of two radio buttons (one marked Macintosh and one marked Windows) it automatically disables 3 or 4 checkboxes of various software applications further down the page.
    The idea is if you select the Windows radio button, you would not be able to select the iWorks or StuffIT checkboxes (as that is Mac software), but conversely if you check Macintosh radio button the iWorks and StuffIT checkboxes activate but the Office 2003 and Microsoft Money checkboxes deactivate (because that is Windows software).
    Im not really a developer so any assistance would be appreciated. Thanks for reading and have a great day! :-)
    Christian

    I suspect that you have a problem in some portion of your code that you have not posted. To help debugging I suggest you create a simple test using two pages: input.cfm and action.cfm.  Get the most simple case working then add the javascript, css, and CF code to make your application work.
    <!--- contents of input.cfm --->
    <html>
    <head>
         <title>Input</title>
    </head>
    <body>
         <form action="action.cfm" method="POST">
              Choose type: <br />
              <input name="type" type="radio" value="male" />     Male<br />
              <input name="type" type="radio" value="female" /> Female<br />
              <input type="submit" />
         </form>
    </body>
    </html>
    <!--- content of action.cfm --->
    <html>
    <head>
         <title>Action</title>
    </head>
    <body>
         <cfif form.type eq "male">
              Type is male.
         <cfelseif form.type eq "female">
              Type is female.
         </cfif>
         Here is a cfdump of the form variables:<br />
         <cfdump var="#form#" />
    </body>
    </html>
    Message was edited by: JR "Bob" Dobbs
    Added sample for action.cfm

  • Read-only radio button or checkboxes save as null

    Hi,
    I have a form with some fields that are editable by 1 group of users and read-only for another group in certain conditions.
    Before the header there is a fetch process to retrieve values from tables. So most fields (read-only & editable) are populated including checkboxes & radio buttons.
    All users can edit at least 1 field on the form.
    When the save button is pressed a PL/SQL process runs to save the data.
    The save works if the field is editable.
    If the field is read-only and text it also works.
    But if the field is a radio button or checkbox a null is saved in the table.
    Any suggestions on how to get the PL/SQL to pick up the read-only radio buttons and checkbox values?

    Hi,
    I had the same problem in my application and I found another solution instead of using two items. I'm using a computation on page processing that makes a select on my table to get the value for the checkbox. I'm doing this with the same condition as my read-only condition on my checkbox item so I can get the database value when it is lose in the submit process.
    Also, I found a difference in the html code between the read-only state of the item and the standard state.
    Original state : name="p_v07" (7 because it's the seventh item on my page)
    Read-only state : name="checkbox"
    I tried to modify this using firebug in execution of the page but without success, the problem is still there.
    Patrick
    Insum Solutions

  • How can I select a radio button in a table regarding the data in the cells?

    Hi everyone
    This is the issue: I need to select the RadioButton which is in a table with data related to transfers in the cells next to it, so I need to select the correct radio regarding the data next to it.
    This is the whole process: First I go to the Add Recurring Transfer section and select the parameters of the transfer (Accounts, date, amount, months etc), then with VB code I capture those parameters from the page and store them into Global variables for further usage on my E-tester script.
    Right after that I need to select the radiobutton regarding the data of the transfer that I already created in order to delete it or modify it (Please see Attachment selectradio1.jpg)
    So How can I move along the table and compare each cell with the variables that I created with the transfer information, so when I finish comparing a row cell by cell and if all the comparison match well in that row, I could select the radiobutton of the row.
    Note: Second Attachment selectradio2.jpg shows the source code of the table...If you need more info please let me know
    Could you please help me with this problem?? I'm Kind of frustrated with this issue jejeje

    Here is an example. I uploaded mock html so that you can actually try this code. I think this does exactly what you are asking.
    Private Sub RSWVBAPage_afterPlay()
    Dim tbl As HTMLTable
    Dim tblRow As HTMLTableRow
    Dim tblCell As HTMLTableCell
    Dim strValue As String
    Dim rButton As HTMLInputElement
    ' ******** This would be your global variable. I put this so that values are seperated by a semicolin you can use what ever format works for you.
    strValue = "03/22/2008;03/22/2008;*************1977;*************1977;$25.25;Jan, Jun, Jul, Dec"
    ' Strip out the ; for inner text comparison
    strValue = Replace(strValue, ";", "")
    ' This will get the table but can be modifoed to be more specific
    Set tbl = RSWApp.om.FindElement(, "TABLE")
    ' This loops through all the rows in the table until a match to the strValue is found
    ' then clicks the radio button. Findelements allows you to specify a root element
    ' once the correct root row is found, FindElemets can get the correct radio button
    For Each tblRow In tbl.rows
      If tblRow.innerText = strValue Then
        Set rButton = RSWApp.om.FindElement("account", "INPUT", "NAME", , , tblRow)
         rButton.click
       End If
    Next
    End Sub
    I also uploaded the script I created. You should be able to run it and see how it works.
    This should get you going.

Maybe you are looking for