Forms 10g  get_item_property('item',justification) doesn't work ?

Hi all,
This is driving me mad ... I just want the justification (alignment) of the data in an item ... the prompt_text_alignment works but not the , seemingly simple , get_item_property('item',justification); - even though it's there in the help text.
Is it there ? mis-spelt or called something else ?
TIA
Steve

It was a case of a supported item type - the procedure wouldn't even compile correctlt it didn't recognise the keyword. However, it liked alignment - guess I must have forgotten to try that :) Thanks Andreas!

Similar Messages

  • Form on a SQL Query - doesn't work with SELECT * - bug or feature ?

    When I do this,
    Create Page -> Page with Component -> Form -> Form on a SQL Query -> SELECT * FROM EMP
    I do not get any items displayed and it creates a simple HTML region / page. Do we have to necessarily specify the column names ?
    Iam looking at a way to see if any addition of columns in the table does not involve IT intervention in recreating the form.
    When we try to create with Form on a SQL Query, then shouldn't it be similar to the Report where the same thing works, if I give SELECT function_returning_columns() from DUAL even then the same thing happens where it creates an ITEM called functions_returning_columns() it creates HTML region
    I asked a related question with no answer :-( in
    Dynamic Creation of Items in Runtime through Application UI

    Hi Marc,
    Thanks. I just tried something like this. Taking the EMP table example, (it doesn't matter which table), I created a region based on a Pl/Sql function returning SQL query
    ( I selected the vertical report template including nulls to display it like a form ) :
    DECLARE
    v_sql VARCHAR2(3000) ;
    mn_idx NUMBER := 1 ;
    BEGIN
    v_sql := 'SELECT ' ;
    FOR recs IN (SELECT * FROM ALL_TAB_COLUMNS WHERE TABLE_NAME = 'EMP' ORDER BY COLUMN_ID)
    LOOP
    v_sql := v_sql || 'HTMLDB_ITEM.TEXT(' || mn_idx || ',' ||
    recs.column_name || ') ' || recs.column_name || ', ' ;
    mn_idx := mn_idx + 1 ;
    END LOOP ;
    v_sql := SUBSTR(v_sql, 1, LENGTH(v_sql) -2) ;
    v_sql := v_sql || ' FROM EMP WHERE EMPNO = 7369 ORDER BY 1 ' ;
    RETURN v_sql ;
    END ;
    This allowed me to do my updates etc.., Then I created a button called 'Apply' and a process called 'update_changes' on button click and defined this:
    DECLARE
    v_sql varchar2(1000) ;
    mn_ctr NUMBER := 1 ;
    BEGIN
    v_sql := 'BEGIN UPDATE EMP SET ' ;
    FOR recs IN (select COLUMN_ID, COLUMN_NAME, DATA_TYPE
    from all_tab_columns where table_name = 'EMP'
    ORDER BY COLUMN_ID) loop
    -- Make changes here if required- this is assuming 9 columns --
    v_sql := v_sql || recs.column_name || ' = HTMLDB_APPLICATION.G_F0' || mn_ctr || '(1),' ;
    mn_ctr := mn_ctr + 1;
    end loop ;
    v_sql := substr(v_sql, 1, length(v_sql) - 1) ;
    v_sql := v_sql || ' WHERE EMPNO = 7369; END ;' ;
    execute immediate (v_sql) ;
    END ;
    Since this is for example, I didn't include code for Checksum and hardcoded empno = condition and have provision for 9 columns. I made some changes and tried saving it and I was able to do it.
    I altered the table to add a column / drop a column and when I relogin, Iam able to see the changes.
    Can you tell me if there could be any drawbacks in this approach ?.

  • Form included in JSF Fragments doesn't work

    Hi there i have a simple form placed in JSF page fragment, the fragment is included in several pages. It renders , but the button action doesn't do what it is supposed to do.
    <?xml version="1.0" encoding="UTF-8"?>
    <!--
        Document   : AddAdvertForm
        Created on : 09-May-2008, 12:14:50
        Author     : Mirza Asif
    -->
    <div style="height: 400px; width: 400px; -rave-layout: grid" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:webuijsf="http://www.sun.com/webui/webuijsf">
        <f:subview id="AddAdvertForm">
            <h:selectOneMenu id="dropdown1" style="left: 100px; top: 40px; position: absolute; width: 125px" value="#{AddAdvertForm.cat}">
                <f:selectItems id="dropdown1SelectItems" value="#{AddAdvertForm.dd1data}"/>
            </h:selectOneMenu>
            <h:selectOneMenu id="dropdown2" style="left: 100px; top: 70px; position: absolute; width: 125px" value="#{AddAdvertForm.type}">
                <f:selectItems id="dropdown2SelectItems" value="#{AddAdvertForm.dd2data}"/>
            </h:selectOneMenu>
            <webuijsf:staticText id="staticText1" style="font-weight: bold; left: 10px; top: 10px; position: absolute" text="Step 1. Choose Advert.   "/>
            <webuijsf:staticText id="staticText2" style="left: 70px; top: 100px; position: absolute" text="Title:"/>
            <webuijsf:staticText id="staticText3" style="left: 35px; top: 130px; position: absolute" text="Description:"/>
            <webuijsf:staticText id="staticText4" style="left: 12px; top: 40px; position: absolute" text="Select Category:"/>
            <webuijsf:staticText id="staticText5" style="font-weight: bold; left: 10px; top: 220px; position: absolute" text="Step 2. Please give your personal details."/>
            <webuijsf:staticText id="staticText6" style="left: 63px; top: 250px; position: absolute" text="Name:"/>
            <webuijsf:staticText id="staticText7" style="left: 53px; top: 310px; position: absolute" text="* E-mail:"/>
            <webuijsf:staticText id="staticText8" style="left: 43px; top: 340px; position: absolute" text="Phone No:"/>
            <webuijsf:staticText id="staticText9" style="left: 65px; top: 70px; position: absolute" text="Type:"/>
            <webuijsf:staticText id="staticText10" style="left: 50px; top: 280px; position: absolute" text="Location:"/>
            <webuijsf:staticText id="staticText11" style="left: 230px; top: 310px; position: absolute" text="#{AddAdvertForm.emailMsg}"/>
            <webuijsf:textField id="textField1" style="left: 100px; top: 100px; position: absolute" text="#{AddAdvertForm.title}"/>
            <webuijsf:textField id="textField2" style="left: 100px; top: 250px; position: absolute" text="#{AddAdvertForm.name}"/>
            <webuijsf:textField id="textField3" style="left: 100px; top: 310px; position: absolute" text="#{AddAdvertForm.email}"/>
            <webuijsf:textField id="textField4" style="left: 100px; top: 340px; position: absolute" text="#{AddAdvertForm.phoneNo}"/>
            <webuijsf:textField id="textField5" style="position: absolute; left: 100px; top: 280px" text="#{AddAdvertForm.location}"/>
            <webuijsf:textArea columns="35" id="textArea1" rows="5" style="left: 100px; top: 130px; position: absolute" text="#{AddAdvertForm.description}"/>
            <webuijsf:button actionExpression="#{AddAdvertForm.button2_action}" id="button1" style="height: 20px; left: 99px; top: 370px; position: absolute; width: 128px" text="Add"/>
        </f:subview>
    </div>The Fragment is included in the following page:
    <?xml version="1.0" encoding="UTF-8"?>
    <!--
        Document   : AddAdvert
        Created on : 13.5.2008, 13:09:
        Author     : Ilija
    -->
    <jsp:root version="2.1" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:webuijsf="http://www.sun.com/webui/webuijsf">
        <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
        <f:view>
            <webuijsf:page id="page1">
                <webuijsf:html id="html1">
                    <webuijsf:head id="head1">
                        <webuijsf:link id="link1" url="/resources/stylesheet.css"/>
                        <webuijsf:link id="link2" url="/resources/global.css"/>
                        <webuijsf:script id="script1" url="/resources/Scripts/global.js"/>
                    </webuijsf:head>
                    <webuijsf:body id="body1" style="-rave-layout: grid; text-align: center; background: url(./resources/images/back_ptr.png) repeat-x">
                        <webuijsf:form id="form1">
                            <div align="center">
                                <jsp:directive.include file="Header.jspf"/>
                            </div>
                            <div align="center" style="padding-top:3px; padding-bottom:3px">
                                <jsp:directive.include file="MainMenu.jspf"/>
                            </div>
                            <div align="center">
                                <h:panelGrid border="0" cellpadding="0" cellspacing="0" columnClasses="Column1,Column2,Column3,Column4" columns="4" id="gridPanel1"
                                    rules="cols" style="height: 96px; left: 0px; position: relative" width="955">
                                    <webuijsf:panelGroup>
                                        <webuijsf:panelGroup rendered="#{Permissions.admin}">
                                            <div style="padding-top:5px; padding-bottom:5px">
                                                <jsp:directive.include file="AdminTool.jspf"/>
                                            </div>
                                        </webuijsf:panelGroup>
                                        <div style="height: 22px">
                                            <h:graphicImage url="./resources/images/cat_header.png"/>
                                        </div>
                                        <h:outputText escape="false" value="#{MenuGenerator.menuHtml}"/>
                                        <h:graphicImage url="./resources/images/cat_footer.png"/>
                                        <h:outputText escape="false" value="#{BannerUnit.rightHTML}"/>
                                    </webuijsf:panelGroup>
                                    <webuijsf:panelGroup>
                                                <div style="position: relative; border-bottom:solid thin green">
                                                    <jsp:directive.include file="AddAdvertForm.jspf"/>
                                                </div>
                                    </webuijsf:panelGroup>
                                    <webuijsf:panelGroup>
                                        <div style="width: 185px; top: 5px; position: relative; float: left">
                                            <h:outputText escape="false" value="#{ArticleUnit.articleHTML}"/>
                                        </div>
                                    </webuijsf:panelGroup>
                                    <webuijsf:panelGroup>
                                        <div style="padding-top:5px; padding-bottom:px">
                                            <jsp:directive.include file="LoginTool.jspf"/>
                                        </div>
                                        <h:outputText escape="false" value="#{BannerUnit.rightHTML}"/>
                                    </webuijsf:panelGroup>
                                    <f:facet name="footer">
                                        <h:panelGroup style="display:block; text-align:center">
                                            <jsp:directive.include file="Footer.jspf"/>
                                        </h:panelGroup>
                                    </f:facet>
                                </h:panelGrid>
                            </div>
                        </webuijsf:form>
                    </webuijsf:body>
                </webuijsf:html>
            </webuijsf:page>
        </f:view>
    </jsp:root>I can press the button of the form, the page reloads, but nothings happen in the Database. Method ok() is responsible to add some stuff in the DB (i tested this method and work separately).
    public String button2_action() {
            AdvertQueries a = new AdvertQueries();
            a.ok();
        return null;
      }Please HELP !!! I am struggling with his for 3 days.

    You might try asking this question on the [JavaServer Faces forum|http://forums.sun.com/forum.jspa?forumID=427].

  • Tabular form for text item -save changes not working

    Hello,
    I have created a tabular form in which I have made one of the columns say deptno as an Text item using APEX_TEXT.ITEM package.
    In my tabular form by default I have created it with all the buttons like with ADD ROW,CANCEL,SUBMIT(SAVE).
    My problem is that whenever I make any changes to the text item for deptno column, and then try to save the changes by clicking SUBMIT - the changes are not taking place to the deptno text item column.
    Can anyone help me out with this.
    thanks.

    hi Denes Kubicek.
    the thing is that i have made it as text item because I have concatenated it with an popup image when clicked on it opens up an new popup window
    which is a report containing dept table details. So if need to make a change to the deptno text item column in the parent window for a particular record
    then i do through the popup window (like by selecting the deptno from the popup window - so that this value is returned to my parent window deptno text item column)
    for this reason i have made the column deptno as an text item.
    can you help me out with this issue.
    thanks.

  • I created a contact form in dreamweaver but it doesn't work

    <form id="form1" name="form1" method="post" action="mailto:myemailaddress">
      <table width="518" border="0">
        <tr>
          <td width="88"><div align="left">name</div></td>
          <td width="216"><input name="textfield" type="text" id="textfield" size="30" /></td>
          <td width="200"><label for="textfield"></label>
            <div align="left"></td>
        </tr>
        <tr>
          <td><div align="left">email</div></td>
          <td><input name="textfield2" type="text" id="textfield2" size="30" /></td>
          <td><p align="right">
            <label for="textfield2"></label>
            </td>
        </tr>
        <tr>
          <td height="30"><div align="left">subject</div></td>
          <td><input name="textfield3" type="text" id="textfield3" size="30" /></td>
          <td><label for="textfield3"></label>
            </td>
        </tr>
        <tr>
          <td height="59"><div align="left">comments</div></td>
          <td><textarea name="textarea" id="textarea" cols="30" rows="5"></textarea>
            <div align="left"></div></td>
          <td><div align="right"></div></td>
        </tr>
    </table>
      <p>
        <input type="submit" value="send" />
        <input type="reset" name="Reset" id="button" value="clear" />
      </p>
    </form>

    Using email addresses in forms is a) not very reliable, b) a good way to get spammed.
    You need a form-to-email processing script. Preferably one which conceals your e-mail address from harvesters and has built-in spam prevention.
    Contact your web host and ask them if they have one you can use.  Often hosts load scripts on their servers which you can activate through your Admin Panel or by referencing the script in your form's action attribute.
         <form action="path-to-script-on-server/form-to-email-script.php">
    If your host doesn't provide scripts, ask them which server-side languages you can use (php, asp, asp.net, perl, coldfusion, etc...).
    Related Links:
        Formm@ailer PHP from DB Masters
        http://dbmasters.net/index.php?id=4
        FormToEmail.com (free & pro versions available)
        http://formtoemail.com/formtoemail_pro_version.php    
        Tectite
        http://www.tectite.com/formmailpage.php
        Forms to Go from Bebosoft (script generating software)
        http://www.bebosoft.com/products/formstogo/overview/
        Wufoo.com (on-line form service)
        http://wufoo.com/
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists 
    http://alt-web.com/

  • What is the best way to shut down an iMac that has frozen during a data transfer? The disk I was writing to will not eject. Stopping "copy items to" doesn't work either_ it is frozen as well. Is there a way to force eject the disk so I can shut down?

    Some more information on the above: OS: 7.2
    1. None of the shutdown commands would work so I held the power button down and received a prompt that asked if I wished to force eject the drive, I selected
    the force eject and then shut down.
    2. Just recently I installed an eSATA _ Thunderbolt_ port multiplier compliant PCIe card (Seritek Q6G) into a thunderbolt external chassis (OWC Helios) (seritek Q6G).
    This freeze data transfer also happened when I connected a Firmtek 5PM external tower to the iMac via thunderbolt cable.
    The driver for the seritek Q6G was installed in the iMac previous to connection of any of the devices.
    Both external towers mount ok on the iMac but have frozen during data transfer.
    The initial freeze was with the Firmtek 5PM which is (JBOD)_ I thought that might have had something to do with the freeze_ it being JBOD_ so next I tried the Mercury Elite AL Pro Q2- which is formated in RAID 5. But then froze too.
    Anybody have any experience with this?
    Maybe I need another driver?
    Or maybe some update to my OS?
    Any suggestions welcomed.
    Thank you

    Hello BDAqua, thanx for the suggestions. Before I saw this reply I tried to first quit the finder and then to relaunch the Finder but that resulted was a blank gray screen.
    In the end I ended up having to power down the iMac.
    Fortunately the RAID array that was "active" seems to be fine and also has a firewire 800 connection so I can use it_ just not with thunderbolt until this issue is solved.
    I'm going to check in the Applications>Utilities>system log to see if any clues are evident_ thank you for the suggestion.
    PS: Nothing of note was obvious as a root cause in the Activity Monitor though.
    hmmm....I was told that the Helios and seritek card were compatable and that the Helios didn't require any drivers..it will be a drag if there isn't an easy fix for this since this new PCIe card from seritek is the first to offer port multiplier compatibility for eSATA to thunderbolt...since they are both new I'm hoping that an OS upgrade will be the fix (presently7.2)...we shall see.

  • "Request Product Service" form on apple's website doesn't work

    I'm trying to get Apple to repair my broken IPod. I go to the Request Product Service online form (http://depot.info.apple.com/ipod/), fill in all my info, and when I get to the page that asks "Describe Your Issue," I get stuck on the first part: "Select an issue which describes the reason for service," it says, and provides a drop-down menu - for which there are no options. Try continuing, and it won't let you. I'm so frustrated - is this Apple's way of getting out of servicing IPod's? It's such an obvious technical glitch in the form (I've tried using a different web browser, same thing happens), it's amazing.
    What are my options? Take it to a store?

    You can call apple at 1-800-275-2273 if your still stuck they will help you sort it out. By the way if you are canadian make sure you are filling out the canadian code, and same for u.s. good luck

  • Show Item Info doesn't work for folders in Spotlight privacy list?

    Hi. I have many images in many folders, and since upgrading to Leopard, none of them show the image dimensions when the "Show Item Info" is checked. As far as I can tell, the only thing difference about this group of files and folders is that it has been added to the privacy list in Spotlight, although, that was also the case under Tiger.

    Interesting, I just checked this, since I have my Tiger drive in the Leopard privacy pane, and most of what is there is also on my Leopard drive. You are quite correct: image dimensions for items on the excluded drive don't show up in any Finder view, nor in GetInfo, while the same image on the Leopard drive displays the info just fine. It looks like Finder is taking the exclusion very very literally and not displaying metadata information for items in the excluded list.
    Francine
    Francine
    Schwieder

  • Oracle Forms 10G(tabbed canvasses not working the same as in Forms 6i)

    Hi everyone,
    I have a form which gets called from another form through a list of value. The called form(second form) has a group of tabbed canvases which get displayed depending on the parameters passed from the first form.
    The Form is working prefectly fine in Forms 6i but when I converted the same form in to forms 10G it does not seem to work the same way. The tabbed canvasses are not getting displayed. I am manually having to press the execute query to get data displayed in the tabbed canvasses. I checked the parameters that are being passed and they are the same as that in Forms 6i.
    Please let me know where my 10G Form is going wrong. Appreciate your help, please send me an email on [email protected]
    Thanks

    duplicate
    Re: Oracle Forms 10G not working as Oracle Forms 6i

  • Form doesn't work in IE, need help...

    If you visit my site
    http://www.firetree.us and click
    on the quote navigation element (it's at the bottom on the left)
    and attempt to fill out the form you'll find it doesn't work. But
    only in IE. I can't figure out why I'm using PHP to send it.
    PHP is located /php/emailer.php
    HTML is located /content/quote.php
    Can anyone help? Thanks!

    Anyhow, the reason your form is not working is this -
    <p
    align="right"><button>Send!</button></p>
    You do not submit the form with this button. It should be -
    <p align="right"><button
    type="submit">Send!</button></p>
    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
    ==================
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > Why are you doing your pages this way? They are
    completely
    > non-accessable, and not-so-functional when js is
    disabled.
    >
    > Also, your loading scheme defeats usability by not
    changing the URL - you
    > cannot bookmark pages....
    >
    > Finally, I feel like you have just put moving things on
    the page without
    > regard for functionality or visual appeal - it's a bit
    distracting to have
    > that continuous up/down motion right in front of my
    eyes....
    >
    > --
    > 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
    > ==================
    >
    >
    > "Spencer Hill" <[email protected]>
    wrote in message
    > news:[email protected]...
    >> If you visit my site
    http://www.firetree.us and click
    on the quote
    >> navigation
    >> element (it's at the bottom on the left) and attempt
    to fill out the form
    >> you'll find it doesn't work. But only in IE. I can't
    figure out why I'm
    >> using
    >> PHP to send it.
    >>
    >> PHP is located /php/emailer.php
    >> HTML is located /content/quote.php
    >>
    >> Can anyone help? Thanks!
    >>
    >
    >

  • Oracle Forms 10G not working as Oracle Forms 6i

    Hi everyone,
    I have a form which gets called from another form through a list of value. The called form(second form) has a group of tabbed canvases which get displayed depending on the parameters passed from the first form.
    The Form is working prefectly fine in Forms 6i but when I converted the same form in to forms 10G it does not seem to work the same way. The tabbed canvasses are not getting displayed. I am manually having to press the execute query to get data displayed in the tabbed canvasses. I checked the parameters that are being passed and they are the same as that in Forms 6i.
    Please let me know where my 10G Form is going wrong. Appreciate your help, please send me an email on [email protected]
    Thanks

    :System.message_level has nothing to do with how you check the flow of execution, or whether you use the Message statement. :System.Message_Level is a Forms variable that can be set to a numeric value. If you set it > 0, it hides error messages, which you should NOT do. Is there anywhere in your form where it is set? If there is, make sure it is set to zero while you are testing.
    <P>Since you are using regular message statements to debug (Re: Zdebug -- Download a Forms debugging message tool), you should determine if the process that sets up the tabbed canvases is being executed.

  • Paypal button doesn't work on Safari. but works on Firefox

    I have over 100 pairs of "Add to Cart" buttons on my website. One of each is on the individual item page and the other is on my Order Form.
    I have one button that works on the order form, but the identical button doesn't work on the individual page when using SAFARI, but works when I use FIREFOX!
    I have recreated the button several times and put it in the proper place several times, saved the changes and republished. Still it doesn't work in Safari!
    This must be a Safari issue not a PayPal issue
    Any suggestions?

    If that's checked, see: How to perform a "clean install" of Flash Player in Mac OS X

  • Forms 10g DateTime format

    I am converting an application from Oracle Forms 6i to 10g, one of the fields has a date format of MM/DD/RR HH24:MI. QA noticed that in 6i you can type 01/01/13 1645 without the colon in the middle of the time and 6i forms would understand it. Forms 10g displays an error... FRM-50025: Date/time must be entered in a format like MM/DD/RR HH24:MI.
    Is there a way to get it to function like 6i did?

    Out of curiosity, I created a little test form in Forms 6i with your format mask. Running it, I can enter the date and time without the / or :, and all works fine. As soon as I leave the field, Forms automatically re-displays the date and time with the correct punctuation.
    Then I compiled that form in Forms 10g and ran it. It works just the same.
    There are some internal format mask elements that may have been set for your Forms 10 installation. If you search online help for format mask, you can read a lot. ....more than I want to see.
    I am using a plain vanilla installation of 10g: version is 10.1.2.3.0

  • Keyboard Tabs doesn't work in PDF

    Hi,
    I'm working on Accessibility in pdf forms, the PDF forms generated from LiveCycle Designer doesn't work for the
    TAB keystrokes, is there a way to do it in order to use tabs in keyboard when viewing pdf in Adobe reader.
    -Sri

    hello ,
       I am sure tabbing does works for adobe forms when viewed through adobe reader .
    Can you specify which version of adobe lifecycle designer you have installed.
        the default tabbing sequesnce is from left to right , top to bottom , starting from the upper left corner.
    go to view -> tab order to set the tabbing order  in adobe life cycle designer
    hope this helps,
    thanks,
    sahiba

  • CFselect onchange doesn't work on flash Form

    Hello :
    I have looked for more than a week to find out answer  but couldn't fine anything.
    I have cform with tye="Flash" and cfselect with query to populate the values.
    I want use onchange="" after I select any value on cfselect to submit the pages and select next cfselect. But doesn't work.
    Some help me
    When I used onchange="submitform();" the form doesn't display.
    I used geturl() and page reload but doesn't submit the page.
    I use this code that i found on Adobe web page and still doesn't work.
    <cfsavecontent variable="
    showSelectedCheckbox">
    var checkboxCount = 3;
    for(var i = 1; i <= checkboxCount; i++)
         var thisItem = 'check' + i;
         if(i == itemSelect.value)
              this[thisName].enabled = true;
         else
              this[thisName].enabled = false;
    </cfsavecontent>
    <cfform format="flash" width="300" height="500">
         <cfinput name="check1" type="checkbox"
              label="Feed?" enabled="true" />
         <cfinput name="check2" type="checkbox"
              label="Mine?" enabled="false"/>
         <cfinput name="check3" type="checkbox"
              label="Eat?" enabled="false"/>
         <cfselect name="itemSelect" label="Select Item"
              onchange="#showSelectedCheckbox#">
              <option value="1">Animal</option>
              <option value="2">Mineral</option>
              <option value="3">Vegetable</option>
         </cfselect>
    </cfform>
    I read about cffromitem or cfformgroup but i don't know how used it .
    Somebody Can help me to result this problem.

    I did everything written ''it solved'' but nothing solved. I think I'll begin to use chrome :(

Maybe you are looking for

  • No postings can be made to profit center 3200 in company code 2000

    Hi All, My client is having two company codes i,e 2000 and 3000. 2000 company code is having only one profit center i.e 2000 3000 company code is having two profit centers i.e 3100 & 3200 Document spliting is activated in both the company codes. If w

  • Archiving of PO attachments

    Hi MM Gurus, May I know the standard SAP Archiving procedure  for Purchase Order with attachments ( I am not talking about the business service attachments). The attachments are at the item level. Please help. Thanks Pranav

  • How to define a variable name in ABAP?

    Field name         numer                          1.000                          5.000                          3.000 How to declare this variable x_numer? "select single numer into <b>x_numer</b> from TableName" Thanks!

  • Generated Web Service Proxies are not listed in NWA after deployment

    Hi everyone, I have some problems with the generated WS proxies as descriped in SAP Help [Creating Web Service Proxies|https://cw.sdn.sap.com/cw/docs/DOC-104216]). After generation and deplyoment no proxies are listed in the NWA under "SOA Management

  • Multiline labels in the radio button component

    How can I have multiline labels on my radio button components? I can't seem to find good documentation anywhere on how to do this. This is the best that I have found: http://board.flashkit.com/board/archive/index.php/t-299514.html but the process doe