Section | ||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
To successfully complete this tutorial, you will need:
You can download the completed application and then upload it to your account. This will provide a reference for the example forms described below. Info | There are additional resources designed to help you learn how to use the power of forms with your database. Refer to Database Connector Examples for more information.
|
Introduction
The database connector maps between HTTP requests issued from forms to SQL queries executed against your database. The connector enables you to use the database of your choice to save and load your form data. You can create a new database or you can automatically generate forms that connect to your existing database tables to save and load data.
...
- Make a copy of the form from Example 4 above and open it for editing.
- We can hide the Order Info section since it does not contain information entered by the user. Select the section by clicking on its header and uncheck the Visible checkbox in the properties pane. The entire section should grey out.
- In the properties panel on the left, open the Data Sources pane by clicking on it.
- Click 'New from XSD'.
- You should see your schema in the resulting dialog box. Expand it and add the 'createOrderDetail' element to the form by clicking the + icon next to it.
- Close the dialog box by clicking X in the top right corner.
- In the Data Sources pane, expand the createOrderDetail data source by clicking on the + icon to the left.
- Click the + icon next to the row element. will generate controls in the form. Note that automatically generates a repeating element since a single Order can contain any number of line items.
- You can drag and drop to re-arrange as you wish.
- Rename the Section named Row to Order Line.
- Name the repeat control OrderLines. Take note of the "s" in the name.
- Select the Product Code input control and in . In the properties pane set panel:
- Set the name to pc.
- Select Dropdown from the Display As property list.
- Select the Onum control inside the Order Line section and in the properties pane set the name to olonum. Uncheck the Visible property.
- Select the Order Line Number control inside the Order Line section and in the properties pane set the name to oln. Uncheck the Visible property.
- Set default values in the Onum and Cnum controls inside the Order Info section and in the Onum and Order Line Number controls inside the Order Line section. You can set any values since we will be overriding them in a rule. We need to set a default value otherwise will grey will gray out the Submit button and the form cannot be submitted.
...