Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Migrated to Confluence 5.3

...

Section
Column
 Now you need to create

...

your form that integrates with your database

...

queries.

There are two ways of

...

creating  forms:

...

  • dragging and dropping controls from the designer palette

...

  • creating a form from an XML schema. In this case, the controls will be automatically created for you based on the XML schema definitions.

...

When working with the database connector, you will always

...

use the latter and create the controls from the schema. In the future we intend to relax this requirement.

...

Column
width240px

On this page:

Table of Contents
maxLevel2

Generating the XML schema

...

You can use the database connector to generate the schemas you will need to use in the frevvo the  form. 
 
To fetch the schema, type a URI in the browser that looks like the example below.  This is almost identical to the query we used to test the connector, but it tells the connector to GET the schema instead.<pre>

Code Block
http://<host>:<port>/database/<queryset name>/<query name>/schema?<template name>=<template value>

...

If your SQL Retrieve statement includes template variables, you’ll need to add the variable names as shown below. The schema itself does not require variables but the connector fetches the schema the same way it fetches data for the '''retrieve''' statement retrieve statement, so the connector expects the template names and values in the URI.

For the '''customers''' example the example we've been using so far, point your browser to the url:<pre>  http://localhost:8082/database/myStore/customers/schema?customerId=1234 </pre>

You should get an XML schema similar to the following:<pre>

Code Block
<?xml version="1.0" encoding="UTF-8"?>

...


<xsd:schema xmlns="http://www.frevvo.com/database/customers" xmlns:xsd=

...

http://www.w3.org/2001/XMLSchema

...

 
targetNamespace="http://www.frevvo.com/database/customers">

...

 
  <xsd:element name="customers">

...

 
    <xsd:complexType>

...

 
      <xsd:sequence>

...

 
        <xsd:element maxOccurs="unbounded" name="row">

...

 
          <xsd:complexType>

...

 
            <xsd:sequence> 
              <xsd:element name="customerId">

...

 
                <xsd:simpleType> 
                  <xsd:restriction base="xsd:string">

...

 
                    <xsd:maxLength value="11"/>

...

 
                  </xsd:restriction>

...

 
                </xsd:simpleType>

...

 
              </xsd:element>

...

 
              <xsd:element minOccurs="0" name="firstname">

...

 
                <xsd:simpleType> 
                  <xsd:restriction base="xsd:string">

...

 
                    <xsd:maxLength value="50"/>

...

 
                  </xsd:restriction>

...

 
               </xsd:simpleType> 
              </xsd:element>

...

 
              <xsd:element minOccurs="0" name="lastname">

...

 
                <xsd:simpleType> 
                  <xsd:restriction base="xsd:string">

...

 
                    <xsd:maxLength value="50"/>

...

 
                  </xsd:restriction>

...

 
                </xsd:simpleType>

...

 
              </xsd:element>

...

 
            </xsd:sequence>

...

 
          </xsd:complexType>

...

 
        </xsd:element>

...

 
      </xsd:sequence>

...

 
    </xsd:complexType>

...

 
  </xsd:element>

...

 
</xsd:schema>

...

Save the schema as an .xsd file in your file system.  You can then [[V4_Data_Sources_and_Schemas#Uploading_a_Schema | upload the schema]] to frevvo  to  and generate controls from the schema elements that map to your database tables.  If you have multiple queries in your configuration file, you’ll need to generate a schema for each query.=====

Document URI Properties

...

After you’ve generated controls from the elements in your database schema, set your form’s Document URI to the database connector query Url. To do:#

  1. Click on the Doc Action button in the toolbar at the top of the form.

...

  1. In the dialog box that appears click on 'Manually set document URIs'.

[[image:DocActionDocURItab.png]]Image Added

The first screen in the wizard is for the form's default document. This is indicated by the Document Name of "default" displayed in the wizard. The default document maps to all of the controls you added to this form by dragging a dropping and  dropping from the palette. This is typically not the document you want to configure.#

  • Click the Next button to advance from the default document to the next schema document

...

  • . You should see the Document name change to your schema's document name

...

[[image:DocActionDocURItabSetDoc.png]]

You also must specify which of the four SQL statements to run—you do this by choosing the appropriate values in the Document URI Read Method and Document URI Write Method dropdowns according to the table below. (You may notice in the Forms Designer that the Document URI Read Method drop down box includes a POST option, but it is not shown below because it is not used by the database connector.)

...

The next screen has two sections: Read URI and Write URI. Typically, when the form loads,  customers read form data from their database to initialize the form and send the updated XML document to the same database upon form submission. Enter the same URI in the Read URI and the Write URI fields, as shown in the image, with the appropriate SQL statement to run if you are reading from and writing to the same database using the database connector. It is possible to read the form initialization data from one database and then update a different database. Enter different URIs in the Read URI and the Write URI fields if this is your situation.

  • Enter the database connector Url to your query in the wizard's URL input. If the database connector is running in the same host and port as the  form server, then you can omit http://<host>:<port>/ from the URL. See this example below.

Image Added

You also must specify which of the four SQL statements to run—you do this by choosing the appropriate values in the Document URI Read Method and Document URI Write Method dropdowns according to the table below. (You may notice in the Forms Designer that the Document URI Read Method drop down box includes a POST option, but it is not shown below because it is not used by the database connector.)

SQL Statement TypeDocument URI Read MethodDocument URI Write Method
CreateLeave blankPOST
RetrieveGET (or leave blank if you are not retrieving data)

...

Leave blank if your form is read-

...

only
UpdateLeave BlankPUT
DeleteLeave BlankDELETE

You’ll see one set of Document URI properties '''for each schema''' in your form. Type the Document URI next to the schema name—make sure '''not''' to type it next to the Default schema. To specify which of the four SQL statements to run, choose the appropriate values in the '''Read Method''' and '''Write Method''' dropdowns, based on the information below.
 *

  • Read Method - Choose GET if your form will be

...

  • initialized with data from your database; leave the dropdown blank if it won’t. (Don’t set the Read Method to POST; this is used for integrating forms with different back ends.) 

...

  • Write Method - If your form is read-only, leave this blank. Otherwise, use the chart above chose either PUT or POST. PUT maps to the

...

  • update

...

  • method while POST maps

...

  • to create.

Note that you may choose only one Write Method in the Forms Designer.

Still using the ''' customers ''' example, assume the ''' Document URI ''' for the schema ''' customers ''' is: 

Code Block

...

http://localhost:8082/database/myStore/customers?customerId={customerId}

...

If you choose the Write method to be ''POST'', the SQL statement that will be executed is:<pre>
<create>               
 <statement>
 INSERT into customers

Code Block
<create>               
 <statement>
 INSERT into customers (customerId,firstname,lastname)

...

      
 VALUES ({customerId},'{firstname}','{lastname}')

...


 </statement>          
</create>

...

At run time, the values of '''{customerId}''', '''{firstname}''' and ''' and {lastname}''' will be replaced by the values of the respective form controls.=====

What happens at run Time ?

...

Let's assume that you defined a Document URI the same Document URI in the Read and Write URI fields in the wizard for a schema in the form, a GET Read Method and a PUT Write Method.

When a user loads your form, a GET request for that URI will be sent to the database connector. That will cause the database connector to execute the '''retrieve''' operation for the query specified in the URI, take the result of the SQL execution and transform it to XML. The database connector will than then return the resulting XML back to the form which will be initialized with the contents of the XML file.

When the user submits the form, the same URI will be executed but now with the PUT (or POST) method. The database connector will than execute the '''updade''' update operation identified by that URI.===

Customizing the XML Schema

...

The schema you retrieve from your database will be relatively generic.  As a result the controls you generate from this database schema might need some tweaking to suit the specific needs of your form. You can modify a control’s behavior by making changes to the schema after you’ve retrieved it.

If you have already uploaded the schema to frevvo , you can still make the changes and update the schema. The process of updating the schema is described [[V4_Data_Sources_and_Schemas#Updating_a_Schema | here]];

Below are common customizations:

===== here.

The common customizations are discussed below.

Adding Dropdown/Radio Options

...

Suppose you want users to select a specific manager’s name from a dropdown list.  Your database has a 50-character limit but naturally does not include specific manager name restrictions, so the schema you retrieve initially might look something like this:<pre>

Code Block
<xsd:element minOccurs="0" name="Manager">

...


      <xsd:simpleType>

...


          <xsd:restriction base="xsd:string">

...


               <xsd:maxLength value="50"/>

...


          </xsd:restriction>

...


      </xsd:simpleType>

...


</xsd:element>

...

The control you generate from the initial schema will be formatted as a text control.  You can make the control a dropdown by changing the control’s '''Format As''' Display As property but you must add the actual restrictions to the schema itself, as shown below. <pre>

Code Block
<xsd:element minOccurs="0" name="Manager" type="ManagerType"/>

...


<xsd:simpleType name="ManagerType">

...


      <xsd:restriction base="xsd:string">

...


         <xsd:enumeration value="John Doe"/>

...


       <xsd:enumeration value="Pat Johnson"/>

...


       <xsd:enumeration value="Mary Smith"/>

...


      </xsd:restriction>

...


 </xsd:simpleType>

...

You also can populate dropdown boxes dynamically from your database by writing a [[V4_Designing_Forms#Triggers_.26_Dynamic_Options | a rule.]]=====

Adding Checkbox Options

...

You may also need a control to allow multi-select options. Like dropdowns and radios controls described above, the control you generate from the initial schema will be formatted as a text control.  You can make the control a checkbox by changing the control’s Format Display As property to Checkbox and changing the actual schema typeto type to xsd:list as shown below:

[[Image:text-toCheckbox-Example-1.png]]

<pre>Image Added

Code Block
<xsd:element minOccurs="0" name="colorChoice">

...


      <xsd:simpleType>

...


           <xsd:list itemType="xsd:string"/>

...


      </xsd:simpleType>

...


</xsd:element>

...

Once the Color Choice control is formatted as a checkbox, a [[ V4_Designing_Forms#Labels |labels property]] will  will display in the properties settings tab for this control. Enter your checkbox options here.

[[Image:text-toCheckbox-Example-2.png]]

'''Limitations'''

[[Image:18px-Symbol_OK.svg.png]] Image Added

Limitations

Tip

Currently it is not possible to list the options directly in the schema

...

[[Image:18px-Symbol_OK.svg.png]] Currently it is not possible to have a checkbox option containing a space. So a label of "dark blue" will appear in the database as "dark_blue".

...

or to have a checkbox option containing a space. So a label of "dark blue" will appear in the database as "dark_blue".

Make a control Required

If your database column allows NULL then the XSD schema generated by the  database connector will set minOccurs='0' for this control. When this control is used in your form the field will not be required. To make this field required you have to edit the XSD to set minOccurs='1' which makes the XSD schema more restrictive then your database schema.

See also Data Sources - Required Schema Controls

Changing text controls to date Controls

...

Controls you generate based on SQL Server date columns initially will be text controls, because all SQL Server dates are in datetime format and therefore have a type of xsd:datetime in the schema you retrieve from the database.

In the schema, change the XSD type from xsd:string to xsd:date If in your you want a date control instead of a text control.=====

Limiting potentially repeating Data

...

Often the schema from your database will allow any number of elements even though you know your form will never use more than one at a time. Every schema includes the “rows” element as shown in the partial schema below—note that based on the maxOccurs value of “unbounded” in the schema, there can be an unlimited number of customer elements. <pre>

Code Block
<?xml version="1.0" encoding="ISO-8859-1"?>

...


<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns=

...

http://www.frevvo.com/database/Customer

...

 
targetNamespace="http://www.frevvo.com/database/Customer">

...

 
   <xsd:element name="Customers">

...

 
      <xsd:complexType>

...

 
         <xsd:sequence>

...

 
            <xsd:element maxOccurs="unbounded" name="row">

...

 
               <xsd:complexType> 
                  <xsd:sequence

Since the schema says the element is unbounded, the control you generate initially will be a repeat control.  You’ll see the Repeat Row heading in the Forms Designer and if you don’t make any changes, users will see the + sign that comes with repeat controls.

[[Image:Customers_repeat_control.png]]Image Added

In this case, change the schema to indicate you only want to work with one customer at a time, as shown below.     <pre>

Code Block
<?xml version="1.0" encoding="ISO-8859-1"?>

...


<xsd:schema xmlns:xsd=

...

http://www.w3.org/2001/XMLSchema

...

 xmlns=

...

http://www.frevvo.com/database/Customer

...

 
targetNamespace="http://www.frevvo.com/database/Customer"

...

> 
   <xsd:element name="Customer">

...

 
      <xsd:complexType>

...

 
         <xsd:sequence>

...

 
            <xsd:element maxOccurs="1" name="row

...

"> 
               <xsd:complexType> 
                  <xsd:sequence>

</pre>Note that now '''maxOccurs="1"''' and that will force the + sign to disappear.=====

Type Restrictions

...

Sometimes the database field will let you enter any string such as a VarChar field. However if you field is a phone number you may which to have the form restrict the input to only valid phone numbers. See the section on [[V4_Using_Forms#Patterns | patterns]] for patterns for more common type restrictions. In this example you still want the form input to be a text box. So we do not change the Format As.

Edit your xsd:<pre>

Code Block
<xsd:element minOccurs="0" name="Home Phone">

...


      <xsd:simpleType>

...


          <xsd:restriction base="xsd:string">

...


               <xsd:maxLength value="12"/>

...


          </xsd:

...

restriction>
      </xsd:simpleType>

...


</xsd:element>

...

Add the following simpleType restriction to your xsd.<pre>

Code Block
<xsd:simpleType name="phoneType">

...


    <xsd:restriction base="xsd:string">

...


        <xsd:pattern value="\d{2}-\d{4}-\d{4}"/>

...


        <xsd:pattern value="\d{4}-\d{3}-\d{3}"/>

...


    </xsd:restriction>

...


</xsd:simpleType>

</pre>Finally change the existing type for the Home Phone element to:<pre>

Code Block
<xsd:element minOccurs="0" name="Home Phone" type="phoneType"/>

...

Now the frevvo the  form will only accept valid phone numbers. If you enter an invalid phone the form will flag the field as invalid.=====

Dynamic Dropdown Options

...

Individual controls also may trigger SQL statements, if you’ve customized your form with rules. See [[Rules_Examples#Database_Connector_REST_Services | Database Connector Rest Service]] for Database Connector REST Service for an example of using the ResultSet returned from the Database Connector to dynamically populate the options in a dropdown control.=====

Show/Hide Required Fields

...

There are times when you have several fields that you want hidden and then only want to make visible depending on the value entered into another field. Thus only when the fields are visible do you want them to be required. Currently hidden required fields are still required and will causes the submit button to remain disabled. Automatically making hidden fields not-required may be added in a future release of Live Forms .

See the documentation for Data Sources and Schemas a solution for implementing show/hide with [[V4_Data_Sources_and_Schemas#Required_Controls | required controls]].[[Image:18px-Attention_niels_epting.svg.png]] '''NOTE:''' Avoid using message control inside of show/hide with required controls.

Warning

Avoid using message, image and video controlsl inside a section that contains other controls that you may want to set to required/not required (either via the Forms Designer or using

...

Business

...

Rules

...

. Since a

...

these three control types always contains a value, it can cause a section, or other controls in a section, to become required. If you must include a

...

these control types, place it outside the section. Another alternative is to write rules for the individual controls within a section to set them to visibile/invisibile or required/not required.