STUCK--assigning prices to drop down items?

I'm using v7 Professional & Designer... I'm fine with calculations on my form,per one of the tutorials, but what I'm having trouble unraveling is how to have the appropriate value (in this case, a print's price) appear on my form when the viewer selects a specific drop down item. Can anyone point me to a tutorial/thread that can show me how to get specific prices assigned to each drop down item, and getting them to carry over into fields included in a calculation?
Any help at all would be greatly appreciated!

There is an example that comes with Designer that located at:
C:\Program Files\Adobe\Designer 7\EN\Samples\Purchase Order\Dynamic Interactive\Forms\Purchase Order.pdf
Check out this example to see if that is something that you are looking for.

Similar Messages

  • Datagrid Drop Down Item renderer Scroll Problem

    Hi,
    I am having a problem with an drop down item renderer on a Datagrid.  When ever the datagrid is displayed and the cell is clicked on i want this to display a drop down list of objects.  I can get the drop down to appear with the list of objects.  H
     owever the scrollbar does not work on this item to allow the user to scroll through all the objects.  If you use the mouse wheel you can scroll down through them all but not when you try and click on the scroll bar to drag down.  Below is the code used.  Any advice why this might be happening?? 
    <mx:DataGridColumn headerText="Widget"
    dataField="WidgetName"
    editable="true"  headerWordWrap="false" textAlign="center" width="100"
    editorDataField="Widget">
    <mx:itemEditor>
    <fx:Component>
    <s:MXDataGridItemRenderer focusEnabled="true" height="22" >
    <fx:Script>
    <![CDATA[               
    import mx.events.FlexEvent;
    import spark.events.IndexChangeEvent;
    private var selectedWidget:Widget = null;
    public function get ccyPair():String {
    return  ddlCcyPairs.selectedItem.Widget;
    override protected function commitProperties():void {
    super.commitProperties();                
    trace("Commit .......");
    protected function ddlCcyPairs_changeHandler(event:IndexChangeEvent):void {
    for each(var ccyP:CurrencyPair in ddlCcyPairs.dataProvider) {
    if (ccyP.ccyPair == ddlCcyPairs.selectedItem.ccyPair) {
    selectedWidget = ccyP;
    ddlCcyPairs.selectedItem = selectedWidget;
    protected function ddlCcyPairs_creationCompleteHandler(event:FlexEvent):void {                 
    for each(var ccyP:CurrencyPair in ddlCcyPairs.dataProvider) {
    if (ccyP.ccyPair ==  data.ccyPairName) {
    selectedWidget = ccyP;
    ddlCcyPairs.selectedItem = selectedWidget;
    ]]>
    </fx:Script>
    <s:DropDownList id="ddlWidgets" width="100%"
    dataProvider="{parentApplication.Widgets}"
    labelField="name"              
    selectedItem="selectedWidget"
    creationComplete="ddlWidgets_creationCompleteHandler(event)"
    change="ddlWidgets_changeHandler(event)"/>
    </s:MXDataGridItemRenderer>
    </fx:Component>
    </mx:itemEditor>
    </mx:DataGridColumn>

    Hi, Post a test code.... It will be a lot easier to help you Mich

  • Can we assign OTR to drop down list?

    Hi, All:
    In Webdyn Pro, Can we use Text element or can we assign OTR to drop down list text field.
    for example:
    wa_value_set-text  = $OTR:ZPACKAGE/TEST_MSG
    thanks,

    STEP 1 GET THE OTR TEXTS:
    <b>
    As described in previous answer...
    CALL METHOD CL_BSP_RUNTIME=>GET_OTR_TEXT
          EXPORTING
            ALIAS = 'OTR_Package/OTR_Elemet'
          RECEIVING
            TEXT  = wa_value_set-text .
    </b>
    Step 2 Update Node attribute info with the set of
    <b>
    Update the meta data info behind the COntext Node attribute that is to have the
    drop down list.
    GET NODE from WD_CONTEXT.  (use wizard)
    Then call GET_NODE_INFO to get the reference to the meta.
    Then ADD  your values,  whatever they are from STEP 1 to the ATTRIBUTE 
    of the node. Using SET_ATTRIBUTE_VALUE_SET method.
    </b>
    Seems a strange thing to do.
    May I ask why the OTR is to be the source of drop down lists ?
    regards
    Phil.

  • Assigning Values to Drop-Down Lists

    I am populating a drop-down list with values of vendor names from my Oracle table. However, I'm assigning the vendor name as the value for each <option> record displayed in the drop-down list. The problem I'm having is that when I select a vendor name from the drop-down list and I view to see which value was selected, I only see a partial vendor name, rather than the full name. For example, If the vendor name that is selected is "Jacks Welding", when I retrieve that selection in my JSP page, the value only comes up as "Jacks" not "Jacks Welding". I want the option value to be the vendor name, not the vendor ID. How can I retrieve the full name from the drop-down list? Below is my code for populating the vendor names.
    <select name="vendor">
         <option></option>
    <%
    queryvendor = "Select Name from AJM.Vendor ORDER BY Name";
    Statement st = conn.createStatement();
         ResultSet rs = st.executeQuery(queryvendor);
         while (rs.next()) {
              out.println( "<option value=" + rs.getString("Name") + ">" + rs.getString("Name") + "</optioN>");
         st.close();
         rs.close();
    %>
    </select>

    Have a look at the HTML your code is producing. (Hint: your browser allows you to display the HTML source of a page.) You are producing this:
    <option value=Jacks Welding>Jacks Welding</optioN>
    This is sloppy HTML, but browsers will do their best with it. Try producing this instead:
    <option value="Jacks Welding">Jacks Welding</option>

  • How to colour drop-down items in enumertor control

    Hi. I know how to modify the controls by customizing  capabilities.
    However, when it comes to enumerator control, I can only change the colour of the top item.
    But I cannot change the colour of the drop-down list of tems in enumerator control.
    Anyone ever done this before?
    Message Edited by astroboy on 11-23-2005 03:33 AM

    Hi
    you can do it programatically
    take a property node of the enum and use named numeric colors properties.
    Tushar Jambhekar
    [email protected]
    Jambhekar Automation Solutions
    LabVIEW Consultancy, LabVIEW Training
    Rent a LabVIEW Developer, My Blog

  • Applescript Programming - on drop-down item

    I just started learning Applescript programming. I need to write an Applescript program to enable the drop-down of the menu and clicking one of the item in the drop-down.
    Example of the drop-down menu: http://javascript-array.com/scripts/...op_down_menu/#
    For example, I need to click the DHTML menu in Home. (Applescript to let Home auto drop-down and Auto click on DHTML)
    Please guide me on how should i write this program.

    Thank for the help i think you have give me a direction on where i should work on. Another thing to check is that is this the correct way to activate the "do javascript" function
    tell application "Safari" to activate
    tell application "System Events"
              tell process "Safari"
              do JavaScript "(PLACE JAVASCRIPT HERE)" in window 1
              end tell
    end tell

  • AppleScript help please: Final Cut Pro / selecting drop down items

    Hi,
    I am wondering if anyone can help guide me wih a spot of AppleScript?
    I'm new to it as of tonight (last time I made a script was 11 years ago, and that was a very basic one!).
    Basically, my problem is I have a long term bug in Final Cut Pro which causes it to crash on launch everytime, unless I delete the Preferences file first.
    (btw This problem exsisted in Snow Leopard and has continued with Lion. I think it is plug-in related, but I've never figured out which or why, and have had a topic ongoing on here int he FCP forum for some time with no luck).
    Anyway, so far I have made a script which trashed the preferences and launches the program, like this:
    try
              do shell script "rm /Users/redhavoc/Library/Preferences/Final\\ Cut\\ Pro\\ User\\ Data/Final\\ Cut\\ Pro\\ 7.0\\ Prefs.fcset "
    end try
    delay 1
    tell application "Final Cut Pro" to activate
    So far, so good.
    However, what I would REALLY like to do, is continue this script to reset all the preferences automatically!
    When launching FCP (as the preferences are gone) this is the first thing that comes up:
    So, my question is:
    How can I choose which items I want selected from the drop down boxes with my AppleScript?
    (Specifically, option 7 in the "Format" drop down, and option 3 in the "Rate" drop down, then more complexly, choosing which folder I want in the "Primary Scratch Disk" drop down (which opens an "Open" dialogue) ).
    Thanks in advance!

    Ok, so I've worked out what the drop down boxes are called by digging through the package plist and strings files.
    So now I have:
    try
              do shell script "rm /Users/redhavoc/Library/Preferences/Final\\ Cut\\ Pro\\ User\\ Data/Final\\ Cut\\ Pro\\ 7.0\\ Prefs.fcset "
    end try
    delay 1
    tell application "Final Cut Pro" to activate
    tell application "System Events"
              tell process "Final Cut Pro"
      activate
                        tell combo box "formats" of window "firstStart"
      click button 1
                                  repeat 6 times
      keystroke (ASCII character 31)
                                  end repeat
      keystroke return
                        end tell
              end tell
    end tell
    But the error now returned is:
    System Events got an error: Can’t get window "firstStart" of process "Final Cut Pro".
    So I changed that line to:
    tell combo box "formats" of front window
    But now the error says:
    System Events got an error: Can’t get window 1 of process "Final Cut Pro". Invalid index.
    Hmmmm.... am I getting any closer??

  • Losing drop-down items

    I'm dynamically populating a drop-down with the current year and the previous three years. When I first render the form in HTML the drop-down is populated correctly. When I go to the second page and then back to the first page the drop-down menu is blank and has no items to choose. Does anyone know what is causing this to happen?
    Thanks in advance.
    Dennis

    Thank you for your response, but I don't want to learn PHP at
    this time,
    just need to know if this behavior is a bug or I am doing
    something wrong,
    and if so, what?
    ".: Nadia :. *ACE*"
    <[email protected]> wrote in
    message news:e20649$od3$[email protected]..
    > Before goig any further with those menus, please have a
    read of these 2
    > articles:
    >
    http://apptools.com/rants/jsmenu.php
    >
    http://apptools.com/rants/menus.php
    >
    > You can learn how to build them yourself, rather than
    relying on the
    > FWs/DW menus, so that your dropdowns don't suffer from
    the problems
    > mentioned in the articles above.
    >
    >
    > --
    > Nadia
    > Adobe� Community Expert : Dreamweaver
    > --------------------------------------------
    >
    http://www.csstemplates.com.au
    - CSS Templates | Free Templates
    > --------------------------------------------
    >
    http://www.DreamweaverResources.com
    - Dropdown Menu Templates|Tutorials
    >
    http://www.macromedia.com/devnet/dreamweaver/css.html
    - CSS Tutorials
    > -------------------------------------------------
    >
    >
    > "Claudette Hennessy" <[email protected]> wrote
    in message
    > news:e2014j$iqc$[email protected]..
    >> Newbie at this..I created the buttons and drop down
    menus in Fireworks
    >> and exported them to the Dreamweaver MX 2004
    document OK. However if I
    >> edit the button from Dreamweaver, make the change
    and click Done to
    >> return to Dreamweaver(the File>Export is grayed
    out) , the menu is no
    >> longer there when I click on the show menu behavior.
    What am I doing
    >> wrong?
    >>
    >
    >

  • MenuStrip drop down items becomes invisible after assigning different rendering context to Form

    Dear All,
    I face a very weird problem with menustrip dropdown items. I use openscenegraph to perform the OpenGL based rendering in windows application. I use VS2012 CLR project with Form in it, to assign
    the rendering context to the window form I use the following code snippet, with that code everything renders but the dropdown items of menustrip are getting masqueraded by the rendering context, please see the image below I can only see the shadows of dropdown
    item border. What is the solution to that?
    HWND hwnd = (HWND) this->Handle.ToPointer(); //panel1->Handle.ToPointer();
    osgViewer::Viewer viewer;
    osg::MatrixTransform* rootnode = new osg::MatrixTransform;
    rootnode->setMatrix(osg::Matrix::rotate(osg::inDegrees(30.0f),1.0f,0.0f,0.0f));
    osg::ref_ptr<osg::Geode> geode = new osg::Geode;
    geode->addDrawable(new osg::ShapeDrawable(new osg::Box(osg::Vec3(-2.0f,0.0f,0.0f), 1.0f)) );
    rootnode->addChild(geode);
    // set the scene to render
    viewer.setSceneData(rootnode);
    viewer.setCameraManipulator(new osgGA::TrackballManipulator());
    osg::ref_ptr<osg::GraphicsContext::Traits> traits = new osg::GraphicsContext::Traits();
    traits->inheritedWindowData = new osgViewer::GraphicsWindowWin32::WindowData( hwnd );
    traits->doubleBuffer = true;
    traits->windowDecoration = false;
    traits->sharedContext = NULL;
    traits->supportsResize = true;
    RECT rect;
    ::GetWindowRect( hwnd, &rect );
    traits->x = 0;
    traits->y = 50;
    traits->width = rect.right - rect.left;
    traits->height = rect.bottom - rect.top;
    osg::ref_ptr<osg::GraphicsContext> gc = osg::GraphicsContext::createGraphicsContext( traits.get() );
    viewer.getCamera()->setGraphicsContext( gc.get() );
    viewer.getCamera()->setViewport( new osg::Viewport( 0, 0, traits->width, traits->height ) );
    viewer.getCamera()->setProjectionMatrixAsPerspective(30.0f, static_cast<double>(traits->width)/static_cast<double>(traits->height), 1.0f, 10000.0f);
    // normal viewer usage.
    viewer.run();

    Dear All,
    I face a very weird problem with menustrip dropdown items. I use openscenegraph to perform the OpenGL based rendering in windows application. I use VS2012 CLR project with Form in it, to assign
    the rendering context to the window form I use the following code snippet, with that code everything renders but the dropdown items of menustrip are getting masqueraded by the rendering context, please see the image below I can only see the shadows of dropdown
    item border. What is the solution to that?
    HWND hwnd = (HWND) this->Handle.ToPointer(); //panel1->Handle.ToPointer();
    osgViewer::Viewer viewer;
    osg::MatrixTransform* rootnode = new osg::MatrixTransform;
    rootnode->setMatrix(osg::Matrix::rotate(osg::inDegrees(30.0f),1.0f,0.0f,0.0f));
    osg::ref_ptr<osg::Geode> geode = new osg::Geode;
    geode->addDrawable(new osg::ShapeDrawable(new osg::Box(osg::Vec3(-2.0f,0.0f,0.0f), 1.0f)) );
    rootnode->addChild(geode);
    // set the scene to render
    viewer.setSceneData(rootnode);
    viewer.setCameraManipulator(new osgGA::TrackballManipulator());
    osg::ref_ptr<osg::GraphicsContext::Traits> traits = new osg::GraphicsContext::Traits();
    traits->inheritedWindowData = new osgViewer::GraphicsWindowWin32::WindowData( hwnd );
    traits->doubleBuffer = true;
    traits->windowDecoration = false;
    traits->sharedContext = NULL;
    traits->supportsResize = true;
    RECT rect;
    ::GetWindowRect( hwnd, &rect );
    traits->x = 0;
    traits->y = 50;
    traits->width = rect.right - rect.left;
    traits->height = rect.bottom - rect.top;
    osg::ref_ptr<osg::GraphicsContext> gc = osg::GraphicsContext::createGraphicsContext( traits.get() );
    viewer.getCamera()->setGraphicsContext( gc.get() );
    viewer.getCamera()->setViewport( new osg::Viewport( 0, 0, traits->width, traits->height ) );
    viewer.getCamera()->setProjectionMatrixAsPerspective(30.0f, static_cast<double>(traits->width)/static_cast<double>(traits->height), 1.0f, 10000.0f);
    // normal viewer usage.
    viewer.run();
    For my understanding, it may be mainly related to Rendering OpenGL.
    http://www.codeproject.com/Articles/1274/OpenGL-Win-AppWizard
    This sample seems ok, you'd better post this issue in the forum for OpenGL
    https://www.opengl.org/discussion_boards/.
    remember make the reply as answer and vote the reply as helpful if it helps.

  • Change font size in drop-down form item

    When I'm in design mode, I assigned the drop-down item a
    style class of 9pt
    font and it looks fine in design mode. When I go to view in
    IE, the font
    looks like a standard 10pt font and doesn't change when I
    change the class.
    So, all of my titles are in 9pt but the form text boxes and
    drop-down boxes
    are all using 10pt font.
    How do you change the font used in form fields?
    Thanks!

    One should not use a print metric on the web. Please use
    pixels, ems, ens,
    exs, percents, or font size names, but definitely not points.
    > How do you change the font used in form fields?
    select { font-size: 9px; }
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Beverly" <[email protected]> wrote in message
    news:ernl49$iei$[email protected]..
    > When I'm in design mode, I assigned the drop-down item a
    style class of
    > 9pt font and it looks fine in design mode. When I go to
    view in IE, the
    > font looks like a standard 10pt font and doesn't change
    when I change the
    > class. So, all of my titles are in 9pt but the form text
    boxes and
    > drop-down boxes are all using 10pt font.
    >
    > How do you change the font used in form fields?
    >
    > Thanks!
    >

  • Adding a "blank" selection for drop-down menus under list items.

    A lot of people on this form are accidentally selecting items that shouldn't be selected and need to be able to change the drop down menu back to blank if they have made a mistake and selected a wrong drop down item in the wrong area.
    Please help,
    Thanks!

    Add an item to your Dropdown list with Blank as text and some value to it.
    When you want to rest to blank, just simply set the rawValue to the value against the blank text.
    For example if I add a blank text and assign a value "1" to it.
    Then in the code I may use like below to rest it to Blank Text.
         DropDown1.rawValue ="1";
    Thanks
    Srini

  • Help! FCS3-How do I reduce bitmap size if drop down edit item is grayed out?

    I am in Flash CS3. I need to reduce a bunch (300) Bitmaps pixels dimensions from 1068 px to 270 px across (and proportional height)  in library but the "edit with..." (external editor) drop down item is grayed out. I have tried everything, including looking for ways to export the Bitmaps to create new images and update library items. I am stumped! Thanks in advance—[email protected]

    Hi,
    One solution I can think of is to use your bean to set up more than just a Vector of values from the database. If you could instead create a vector of objects which contain a reference to the row as well as the data then you can use that to name the select control:
    <select name=Choice_<%=vPQStatus.elementAt(i).getReference()%> >
    <option value="S">Start
    <option value="R">Restart
    <option value="C">Complete
    </select>
    <%=vPQStatus.elementAt(i).getValue()%>
    This would then require you to access all request parameters and search for those starting with "Choice_" you can then extract the reference from the name and the new selection from the value.
    Hope this helps

  • Selecting an item in a Drop Down Menu to activate a field

    Hi,
    I'm using LiveCycle Designer ES to create a dynamic form and I wish to have an 'other' field appear when 'other' has been selected in drop down menu. I've worked out how to give each of the drop down items a Specified Item Value and use this to trigger the presence of the 'other' field. However I'm not sure which event to use to activate the presence code.
    Thanks in advance.

    You can write the code either in the change event of the dropdown or in the Exit event of the dropdown.
    If you use the change event use the below syntax..
         if(xfa.event.newText =="Other")
              fieldName.presence = "visible";
    If you are using the exit event use the below syntax..
         if(this.rawValue =="Other")
              fieldName.presence = "visible";
    Sample file is at the below location..
    https://acrobat.com/#d=QZS2WmRlvgjTIePj8a6mkQ
    Thanks
    Srini

  • How do I make top menu item unclickable but drop downs are clickable?

    I have drop down menu with the top menu item titled "Renderings" and the drop down from that are serveral types of renderings. I don't want the viewer to be taken to a page called "Renderings" when they click that, but I do what them to choose one of the drop down items. How can I make the top most menu item "Renderings" non-clickable? Thank you!

    Right mouse click on the top level page in  your plan view and then mark it as 'Include Without Hyperlink'

  • Webding font issue in drop down form

    I need a check mark and an "X" in a dropdown list of a form. The only font I found that has them together is Webdings. I works fine in the Actrobat Pro preview. But wehen the file is opened in Reader the symbols are different.

    One should not use a print metric on the web. Please use
    pixels, ems, ens,
    exs, percents, or font size names, but definitely not points.
    > How do you change the font used in form fields?
    select { font-size: 9px; }
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "Beverly" <[email protected]> wrote in message
    news:ernl49$iei$[email protected]..
    > When I'm in design mode, I assigned the drop-down item a
    style class of
    > 9pt font and it looks fine in design mode. When I go to
    view in IE, the
    > font looks like a standard 10pt font and doesn't change
    when I change the
    > class. So, all of my titles are in 9pt but the form text
    boxes and
    > drop-down boxes are all using 10pt font.
    >
    > How do you change the font used in form fields?
    >
    > Thanks!
    >

Maybe you are looking for

  • Rederteminação do Código de Imposto do controle de cópia do Documento

    Boa tarde pessoal, Eu tenho uma ordem de venda do tipo "COTAÇÃO" e elaborei nas customizações de SD, um controle de cópia que me permiti-se copiar essa Ordem, para uma outra ordem do tipo "CONSIGNAÇÂO"...até ai tudo bem é somente o processo de SD. qu

  • RFC connections do not work after system restart

    Hi PI experts! We're facing a problem with our PI 7.0 system. After each restart of the system, all RFC sender communication channels do not work. When testing the connection in the sending SAP system, the connection test fails. Currently we workarou

  • Connection to MySQL database, DBCO settings

    Hi experts, I need to connect to a MySQL database located on a different side. I do have the IP and domain name (e.g. my.test.com), MySQL DB name (SAPtest), Username (SAPuser) and Password (*****). I did following entries under DBCO: Name: SQLtest DB

  • Why am I getting unauthorised emails into my account and can't remove

    I switched my domain from long term USA hosting, to 1and1 in UK and now have a problem with my Mozilla Thunderbird email client. I set up my email addresses only with no web page file uploads. I decided 1and1 were not for me, so I cancelled my accoun

  • Imported Videos not showing up in window

    Im new to iMovie. When I try to import AVI movie files from my finder a "copying file" window pops up, finishes loading then a "thumbnail generating" window pops up, finishes loading, but no thumbnails show up in the bottom half of iMovie even though