list
list
Renders a dropdown select box, check boxes or radio buttons with data provided via a comma separated list or from a method call
Attributes
Name | Required | Default | Options | Description |
---|---|---|---|---|
ftList | No | comma separated list of values or variable:value pairs to appear in the drop down. e.g apple,orange,kiwi or APP:apple,ORA:orange,KIW:kiwi | ||
ftListData | No | Method call that must return a string in the same variable value pair format as the ftlist attribute OR a query containing the columns value & name. Method gets passed the objectid of the currently edited object as an argument. e.g apple,orange,kiwi or APP:apple,ORA:orange,KIW:kiwi or queryNew('value,name') | ||
ftListDataTypename | No | Specific typename to call ftlistdata method on. | ||
ftRenderType | No | dropdown | dropdown,checkbox,radio | The way the list will get rendered. |
ftSelectMultiple | No | false | true,false | used when ftRenderType=dropdown. It allows the user to select multiple items |
ftClass | No | sets a class for the form element | ||
ftstyle | No | allows in line styles to be added to form element | ||
ftMultipleLines | No | true | true,false | for radio and checkbox only, adds a break between each checkox or radio button |