Create a form based on past results

No one in the it Department here knows how to do this... other write ASP.net, but we're all tryign to move away from our intranet on Dreamweaver Frontpage.

Essential-
I am trying to create an order form for the printer toners. Ideally, I would like 3 in drop-down menus, one giving options from which direction, the office is. Then a second drop-down menu that lists the printers in this particular branch. And a 3rd once a printer is selected, it shows the tonics which are available for use with this printer.
They are not nessessarily need to be drop down menus, maybe just text boxes where if a branch is selected / highlighted, the next text box will show the printers in this branch.
Is this something that can be done using Dreamweaver? FrontPage seems pretty useless for this particular thing.
Any help is greatly appreciated :)
Thank you
Becky

Using DW MX!

Here is another link:

http://dynamicdrive.com/dynamicindex16/chainedselects/index.htm

Alex

Becky.m wrote:
> I really need help on this one, if someone could make so much point just like me in the right direction thatd be great.

Tags: Dreamweaver

Similar Questions

  • I create a form based on two tables that have sequences also. When I create insert only row is inserted in the fields in table first and second fields of the table are empty. Why?

    Mr President.

    I create a form based on two tables that have sequences also. When I create insert only row is inserted in the fields in table first and second fields of the table are empty. Why?

    formdoubletables.png

    the page source is

    <?xml version='1.0' encoding='UTF-8'?>
    <ui:composition xmlns:ui="http://java.sun.com/jsf/facelets" xmlns:af="http://xmlns.oracle.com/adf/faces/rich"
                    xmlns:f="http://java.sun.com/jsf/core">
      <af:panelFormLayout id="pfl1">
        <af:group id="Group">
          <af:inputText value="#{bindings.VoucherId.inputValue}" label="#{bindings.VoucherId.hints.label}"
                        required="#{bindings.VoucherId.hints.mandatory}" columns="#{bindings.VoucherId.hints.displayWidth}"
                        maximumLength="#{bindings.VoucherId.hints.precision}"
                        shortDesc="#{bindings.VoucherId.hints.tooltip}" id="it1">
            <f:validator binding="#{bindings.VoucherId.validator}"/>
            <af:convertNumber groupingUsed="false" pattern="#{bindings.VoucherId.format}"/>
          </af:inputText>
          <af:inputDate value="#{bindings.VoucherDate.inputValue}" label="#{bindings.VoucherDate.hints.label}"
                        required="#{bindings.VoucherDate.hints.mandatory}"
                        columns="#{bindings.VoucherDate.hints.displayWidth}"
                        shortDesc="#{bindings.VoucherDate.hints.tooltip}" id="id1">
            <f:validator binding="#{bindings.VoucherDate.validator}"/>
            <af:convertDateTime pattern="#{bindings.VoucherDate.format}"/>
          </af:inputDate>
          <af:inputText value="#{bindings.Credit.inputValue}" label="#{bindings.Credit.hints.label}"
                        required="#{bindings.Credit.hints.mandatory}" columns="#{bindings.Credit.hints.displayWidth}"
                        maximumLength="#{bindings.Credit.hints.precision}" shortDesc="#{bindings.Credit.hints.tooltip}"
                        id="it2">
            <f:validator binding="#{bindings.Credit.validator}"/>
          </af:inputText>
        </af:group>
        <af:group id="g1">
          <af:inputText value="#{bindings.Lineitem.inputValue}" label="#{bindings.Lineitem.hints.label}"
                        required="#{bindings.Lineitem.hints.mandatory}" columns="#{bindings.Lineitem.hints.displayWidth}"
                        maximumLength="#{bindings.Lineitem.hints.precision}" shortDesc="#{bindings.Lineitem.hints.tooltip}"
                        id="it3">
            <f:validator binding="#{bindings.Lineitem.validator}"/>
            <af:convertNumber groupingUsed="false" pattern="#{bindings.Lineitem.format}"/>
          </af:inputText>
          <af:inputText value="#{bindings.VoucherId1.inputValue}" label="#{bindings.VoucherId1.hints.label}"
                        required="#{bindings.VoucherId1.hints.mandatory}"
                        columns="#{bindings.VoucherId1.hints.displayWidth}"
                        maximumLength="#{bindings.VoucherId1.hints.precision}"
                        shortDesc="#{bindings.VoucherId1.hints.tooltip}" id="it4">
            <f:validator binding="#{bindings.VoucherId1.validator}"/>
            <af:convertNumber groupingUsed="false" pattern="#{bindings.VoucherId1.format}"/>
          </af:inputText>
          <af:inputText value="#{bindings.Debit.inputValue}" label="#{bindings.Debit.hints.label}"
                        required="#{bindings.Debit.hints.mandatory}" columns="#{bindings.Debit.hints.displayWidth}"
                        maximumLength="#{bindings.Debit.hints.precision}" shortDesc="#{bindings.Debit.hints.tooltip}"
                        id="it5">
            <f:validator binding="#{bindings.Debit.validator}"/>
          </af:inputText>
          <af:inputText value="#{bindings.Credit1.inputValue}" label="#{bindings.Credit1.hints.label}"
                        required="#{bindings.Credit1.hints.mandatory}" columns="#{bindings.Credit1.hints.displayWidth}"
                        maximumLength="#{bindings.Credit1.hints.precision}" shortDesc="#{bindings.Credit1.hints.tooltip}"
                        id="it6">
            <f:validator binding="#{bindings.Credit1.validator}"/>
          </af:inputText>
          <af:inputText value="#{bindings.Particulars.inputValue}" label="#{bindings.Particulars.hints.label}"
                        required="#{bindings.Particulars.hints.mandatory}"
                        columns="#{bindings.Particulars.hints.displayWidth}"
                        maximumLength="#{bindings.Particulars.hints.precision}"
                        shortDesc="#{bindings.Particulars.hints.tooltip}" id="it7">
            <f:validator binding="#{bindings.Particulars.validator}"/>
          </af:inputText>
          <af:inputText value="#{bindings.Amount.inputValue}" label="#{bindings.Amount.hints.label}"
                        required="#{bindings.Amount.hints.mandatory}" columns="#{bindings.Amount.hints.displayWidth}"
                        maximumLength="#{bindings.Amount.hints.precision}" shortDesc="#{bindings.Amount.hints.tooltip}"
                        id="it8">
            <f:validator binding="#{bindings.Amount.validator}"/>
            <af:convertNumber groupingUsed="false" pattern="#{bindings.Amount.format}"/>
          </af:inputText>
        </af:group>
        <f:facet name="footer">
          <af:button text="Submit" id="b1"/>
          <af:button actionListener="#{bindings.CreateInsert.execute}" text="CreateInsert"
                     disabled="#{!bindings.CreateInsert.enabled}" id="b2"/>     
          <af:button actionListener="#{bindings.Commit.execute}" text="Commit" disabled="#{!bindings.Commit.enabled}"
                     id="b3"/>
          <af:button actionListener="#{bindings.Rollback.execute}" text="Rollback" disabled="#{!bindings.Rollback.enabled}"
                     immediate="true" id="b4">
            <af:resetActionListener/>
          </af:button>
        </f:facet>
      </af:panelFormLayout>
    </ui:composition>
    
    
    
    

    Concerning

    Go to your VO Wizard, select the tab of the entity and to check if both the EO is editable or not.

    See you soon

    AJ

  • Create a form based on a stored procedure error

    Hi all

    I am creating a form based on a stored procedure (CASH_MOVE). The stored procedure is inside a package (APEX_API).

    The package is not in the default schema of database application APEX (MO_APEX) analysis, but the workspace (USD) has access to this database scheme (MO_401)

    and the corresponding APEX analysis (MO_APEX/APEX_PUBLIC_USER) schema user has the EXECUTE privilege on the database to the other schema (APEX_API) package.

    So what happens during the wizard, at STEP 1, he sees the other schema, and I choose the package procedure.

    When I press next, it fails with the error 'user XXX has no privileges on the schema MO_401. ". "


    However, the user XXX is the developer of the APEX, which has no schema in the database. I tried also giving execute rights on APEX_PUBLIC_USER also without success.

    No idea why this happen?

    I use: Application Express 4.2.4.00.08

    Database version: 11.2.0.3.0

    TIA.

    Dionisis

    Ms. wrote:

    I am creating a form based on a stored procedure (CASH_MOVE). The stored procedure is inside a package (APEX_API).

    The package is not in the base schema of data analysis of the demand of the APEX (MO_APEX), but the workspace (MO_APEX) has access to this database scheme (MO_401)

    and the corresponding APEX analysis (MO_APEX/APEX_PUBLIC_USER) schema user has the EXECUTE privilege on the database to the other schema (APEX_API) package.

    So what happens during the wizard, at STEP 1, he sees the other schema, and I choose the package procedure.

    When I press next, it fails with the error 'user XXX has no privileges on the schema NNN. '.


    However, the user XXX is the developer of the APEX, which has no schema in the database. I tried also giving execute rights on APEX_PUBLIC_USER also without success.

    No idea why this happen?

    The developer APEX XXX there schema restrictions in the account privileges Schemes Accessible setting in Home > Administration > users > edit user?

  • Create a form based on the procedure

    Hi all

    I am creating a form based on the procedure, but when I entered the name of stored procedure, I got this error:
    Specified procedure could not be found, please choose a procedure name valid store.

    965628 wrote:
    My procedure is in a package.

    How can I prepend package name?

    Like this

    your_package_name.your_procedure_name(parameters);
    
  • Created the form based on the table - created new line - how to retrieve line editing?

    Hello

    Sorry for such a stupid question, but being new in APEX, I don't know much about how the end user on a form.

    I have created a new form (not in a table), based on a table.

    I ran the form and created a new line.

    After the line was created, the form comes back ready to create another line (all the values in the fields).

    How can I go on the recovery of the line, I added just to make a few changes?

    Again, please forgive my ignorance.

    Mason

    Masong says:

    Sorry for such a stupid question, but being new in APEX, I don't know much about how the end user on a form.

    Or about how best to use this forum. Always include all the details of your environment and your application when you post a question so that we can provide a solution version - and context, case-specific: How to get the answers from the forum

    I have created a new form (not in a table), based on a table.

    I ran the form and created a new line.

    After the line was created, the form comes back ready to create another line (all the values in the fields).

    How can I go on the recovery of the line, I added just to make a few changes?

    Ensure that the attribute key back to point in the line process of... The ARP process is defined to return the value of PK of records inserted in the element of key primary page and delete any Reset Page clearly session state process created by the wizard page.

  • Creating conditional actions based on the results of the quiz

    I have a quiz at the end of my captivate file and I try to get to show different based on images if you have passed the quiz, or if you failed. For example if you pass, I want to show an image of the tick, and if you do not have an image of the cross, on the results slide.

    I tried to create this by implementing a conditional action. I put the two images on the slide and they hid. Then I have a conditional action value:

    IF
    cpQuizInfoPointsscored greater than or equal to 70

    ACTION

    See the Image_tick

    ON THE OTHER

    See the Image_cross

    When I play the quiz or image shows that I have success or failure (the quiz is set to a 70% pass - there are 10 questions, and all are worth 10 points)
    I am new to Captivate so that any help would be appreciated!
    Thank you

    Each action must be triggered by 'something', which is an event. You must attach to an event, I suspect that the event on enter score slide is one that suits. Select the slide of score, look in the properties panel, tab Actions, perform actions on enter, choose the action.

    In addition, there is a difference between the system variable cpQuizInfoPointsscored and cpInfoPercentage. Personally, I would use the simpler cpQuizInfoPassFail:

    IF cpQuizInfoPassFail is equal to 1

    See the tick

    On the other

    See the cross

    Download the tables in these two articles:

    System variables in Captivate 8/9 - Captivate blog

    Events / Actions (Advanced) - Captivate blog

  • Can we create an APEX form based on a Table that has no primary key

    Hello

    I have a requirement.
    I need to create a FORM based on a table with no primary key, but is having a Unique key. I can use as a replacement for primary key Unique key.

    but when I tried to create a form, I received the following message.
    --------------------------------------------------------------------------------------------
    Tables from the source forms and forms in a table must have a primary key
    -------------------------------------------------------------------------------------------


    Thank you
    Deepak

    Hi Deepak,

    Because the form create on a table includes Wizard steps additional, more complex that we did not want to add to the wizard create a new Application.

    Joel

  • See update of the form-based forms 6i and 10g.

    Hi all

    I am facing a strange problem.

    I created a form based on a view that is based on a single table. I made a copy of the form and converted in 10g.

    When running in 6i, I can update the data through forms. But in 10g, its display FRM-40602: cannot insert or update data in a view.

    Can someone tell what is the problem?


    Thank you and best regards,

    Manu.

    Just for a control:

    What happens if you assign the uneditable "Kry" mode and mark the PK-item as a"main key"?

  • Form based on a Table, only updated authorized, form does not display the data

    Hello

    I created a form based on a Table by the corresponding wizzard. The table has only one line. The shape didn't create or delete buttons, only update & Cancel is allowed. The PK (id field) is hidden and it takes the value of a database trigger when insert (in fact never is apllied because there is no Create).

    When the form is called it is already displayed in update mode, with cancel button allowed but not data in the fields. Line seems ok, session data available null to variables/positions. No idea why this is happenning? I expect to HAV the data in the form fields.

    TIA

    Hello

    Your primary key item have no value, I guess.
    Create calculations to set the value of the item that is in this single line in your table

    BR, Jari

  • Creation of form-based authentication in OAM

    I tried to create a form based authentication system, but enabled to select Yes/No is greyed out! Any reason?

    As for the challenge parameter Im giving the below:

    Form: / login.html
    CREDS:userid password
    Action:/access/dummy.cgi

    Is this good?

    Thank you!

    I'm guessing that you can not have defined the necessary plugins or the steps to terminate the plan, so he doesn't know what to do.

    Your cred settings must match the names of the form fields in your markup.

  • How to create a form on a table with 3 columns for a PK

    Hi all

    We have a table that has 3 columns that make up the primary key and I want to create a form based on this table; Let us on the 'create form Page' it is only 2 options that identifies the first and second columns of PK.

    Is there a way I could add the third column PK.

    Kind regards
    Mel

    Mel:

    I don't think you can use the form wizard to create the form for you in this case. You can create the form manually or modify the table to have a new column that will act as a substitute PK for the table. This column can be filled from a sequence and must have a Unique key limited defined against it.

    CITY

  • form based on a synonym

    Hello

    A simple question: is it possible to create a form based on a synonym? (public, private, no matter)?

    Suppose I want to deploy an application in a scheme where all synonyms (with the same names) are directed towards the real schema.

    In addition, something tells me that it is not possible because when I create a form region that is based on the table, the lov presents only the "real" tables and views.

    The last question, if not possible, why is not? Many customers use FORMS with this architecture, this will be one step closer to the APEX.

    Thank you, Bruno-Pierre

    Bruno-Pierre,

    It is not possible today. There can be no good reason except that it would be more work to implement in a lot of places and the value of the feature was not provided in time.

    Scott

  • Create a form of Apex based on database views

    How can I create a vision-based Apex form? The list of values do not include the name of the view, it lists only the tables. When I add the name of the view in the name of the Table I get the message "source tables forms and forms in form of table should have a primary key"

    Hello

    You can make a hint:
    (1) rename your view.
    (2) create an array with the name of the view, primary key, and the same columns as in the notice.
    (3) create a shape of APEX
    (4) remove the table
    (5) to rename original name display

    Best regards, Kostya Proskudin

  • Can I create a form using the object styles in InDesign

    Hello

    Is it possible to create a form in the object Styles I can create in InDesign? I know that I can attribute some qualities, but I would like to create a capsule form that will be repeated throughout a page of lists in our sites.

    So far, I have to copy, paste, and anchor the object in the text which is quite time that we have thousands of ads, and life is too short for mundane tasks.

    If I can create a form of object Styles, by entering its dimensions, it will allow me to create the style for import into InDesign, 4 d, our CMS.

    If not, can we have it in a new construction, please Adobe?

    I look forward to your reply.

    Thank you

    Roy

    That can be done with tabs and styles nested using underscore with a custom stroke style. I hope that these screenshots should explain it...

  • Report based on the result of the sorting function?

    Dear all,

    I will make this issue in general terms:

    We have a report based on a query that reads data from a single table (P). It will take to provide a field more (X) in the report which is obtained using more than two tables (E, 1 m approx).

    I wrote a function that produces this extra field based on a join of tables E and P1. Please note that this function depends on the report query variables. This output is correct and provides all the necessary information, but it is necessary to sort the report based on the result of this function, i.e. the value of field X.

    Is this possible?

    I appreciate your comments.

    Note: I've tried incorporating pictures E, P1 in the request report (I can then sort on the required field) but gets reduced the number of lines in the report. This is because the join between the tables, P, E and P1 reduces the number of lines (which is not the correct result).

    Yes, it is possible. If you have ended up above a formula column.

    Create the formula column. For example, CF_SALARY_TOTAL. Place a level to the top of the query and set your desired sort (Asc/Desc)

    Hope this helps

    Hamid

    Move or

Maybe you are looking for

  • Re: Replacement of HDD on the Satellite L40-12 X

    HelloI have Satellite L40-12 X with 5400 RPM 120 GB HARD drive and I would like to buy a new HARD drive, but I wonder if 500 GB at 7200 RPM will be compatible with my laptop? Below is the basic information, but I can't find more information about it.

  • HP F4580: Printer does not print wireless

    Hi there, can you help? I have a HP F4580 which will only print with the wire attached to my computer printing and the custom of my laptop either.  Ive done all the tests and it won't always feel. What should I do next?  TIA

  • W530 upgrade Windows 7-&gt; Win 8: Tools Levono?

    Hello I have updated the OS on my new W530 of Windows 7 to 8. Lenovo partition is still there, but I can't access the features of Lenovo. There is no entry program. Or F11 does not work when you start. How to bring back the features of Lenovo? Thanks

  • CD PLAYER does not recognize the CD. He will not play, rip or burn CDs

    my cd / dvd drive does not recognize any any cd No. He plays either tear up or burn music. everything was fine for the past two weeks. Please help me, what should I do? I have windows XP

  • TabTip32 Windows 7 64 bit grabs focus

    I have two laptop Fujitsu Lifebook running 64-bit Windows, and both have recently developed a strange problem with TabTip32. Once connected, the system almost immediately becomes unusable because the foreground application loses focus. You can open a