Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Table of Contents

Introduction

The "URL Request Parameters for the Popup form Form" is a new feature for for Form Grid. It will pass the selected field ID as URL request parameters to the popup form which is the configured form grid target form that will pop up upon adding or editing a row in the form grid. In this article, we will demonstrate 1 example of using this feature. 

Steps Example

This example app will

Step 1

Create 4 forms and generate a CRUD for each of it them after creation and configuration.

Item Form - 2 text fields

LabelID
Item IDitemID
Item NameitemName

Figure 1:  Item Form Layout

Dummy Data - 2 text fields

LabelID
Item IDitemID
Dummy NamedummyName

Figure 2: Dummy Data Form Layout

...

Figure 13: Select Box Setting - 3

Step 2

Populate some data into the Item and Dummy forms. 

Note

The inputted data (Item and Dummy CRUD) must have matching Item IDs.

Image Added

Figure 14: Item CRUD

Image Added

Figure 15: Dummy CRUDPopulate 

Step 3

Result
Figure 

Figure 16: Result

Properties


Figure 17: Properties 

NameDescription
Parameter

Map values as the URL parameters.

Field IdField ID of the form element in the current form.
Default Value

Default Value when there's no existing value found/selected.

A hash variable is accepted here. For example, you may key the following

Code Block
#currentUser.firstName# #currentUser.lastName#


to pre-populate the field with the currently logged-in user's name.

...