| Tag Link | [Value_ListItem] | Category | Database |
|---|---|---|---|
| Type | Substitution | Source Available | No |
| Support | Preferred | Version | 5.0 |
| Change | Unchanged | Data Source | FileMaker Pro |
| Output Type | String | Security | None |
| Implementation | LCAPI | Sets | Lasso 8.5, Lasso 8.0, Lasso 7.0, Lasso 6.0, Lasso 5.0 |
| Lasso 3 Equivalent | [ValueListItem] | ||
[Value_ListItem] returns the value for the current item in a value list. Optional
[Value_List: 'Field_Name']
[Value_ListItem]
[/Value_List]
[Value_List: 'Field_Name']
[Value_ListItem:
[/Value_List]
[Value_List: 'Field_Name']
[Value_ListItem:
[/Value_List]
| Optional Parameters | |
|---|---|
| Encoding Keyword | Specifies the encoding for the tag's return value. Tags are encoded using |
| -Checked | If specified then only selected values from the value list will be output. Equivalent to |
| -Selected | If specified then only selected values from the value list will be output. Equivalent to |
To display a pop-up menu with values from a FileMaker Pro value list:
Use the [Value_List] ... [/Value_List] and [Value_ListItem] tag. The following example creates a pop
<select name="Title">
[Value_List: 'Title']
<option value="[Value_ListItem]" [Selected]> [Value_ListItem] </option>
[/Value_List]
</select>