Skip to main content
Version: 1.25 (Current)

Add Multiple Choice with Dropdown

This action will add a Multiple Choice with Dropdown to the specified dynamic container.

Parameter Reference

ParameterDescriptionSupports TokensDefault
Container IdThis is the Container Id to place this Multiple Choice with Dropdown into. Eg. Add a Dynamic Field Container having id DynamicFieldContainer. "DynamicFieldContainer" is the ID of the field. Supports My Tokens.YesNone
Field IdRequired. Give this field an id so you can reference it later. Supports My Tokens.YesNone
Field TitleGive this field an title/name which is a label. Supports My Tokens.YesNone
Field DescriptionGive this field a description. Supports My Tokens.YesNone
Initial ValueGive this field an initial value. Supports My Tokens.YesNone
Link ToLink this to another multi-select field that when changed will cause this control to update with different items. For example, imagine Category and Subcategory selection. When this option is used, prefix each item below with the name of the parent category like this: "Value Of Parent Item/This Item"Also, you can input more field IDs separated by comma in order to link this to multiple multi-select fields.Supports My Tokens.YesNone
Data SourceRequired. Choose from existing data sources to bring items fromNoNone
Tokenize Datasource ParametersTokenize the parameters of the datasource when generating the field. (Otherwise the tokenization happens when the initialization process ends.) If you are generating fields using tokens from an Execute Actions on Entity list the token replacement will happen after all initialization actions so tokens used in datasource parameters (eg. SQL Query with a query containing tokens from current context) might not be replaced correctly.NoTrue
Bind Expression - ShowDynamically show or hide this field. This must be a boolean expression. Use standard javascript boolean operators (==, !=, <,> , !). For example, use [PaymentMethod] == 'CreditCard' to show the credit card field only when the Payment Method is set accordingly. Supports My Tokens.YesNone
Bind Expression - ValueDynamically compute the value of this field. So when other fields change this fields updates automatically. Use standard javascript operators where needed (+, -, *, /). For example, use [FirstName] ' ' [LastName] to automatically fill the Display Name field. Note that once the value is edited manually, the automatic synchronization stops. Supports My Tokens.YesNone
Bind Expression - On Change/ClickBind some javascript code to execute when the value in this field changes or when a button is clicked. Access the form fields by using syntax [FieldId] which maps to the js object form.fields.FieldId.value. For buttons, you can "return false;" to prevent the form from submitting. Supports My Tokens.YesNone
Tokenize Bind Expressions?Check this box in order to tokenize the Bind Expressions fields. This is useful when you dynamically compute the id values so you need to tokenize and obtain the real IDs first.NoNone
CSS ClassSet CSS classes on the input control. This is appended to the container's UI settings! Supports My Tokens.YesNone
CSS StylesSet inline styles on the input control. This is appended to the container's UI settings! Supports My Tokens.YesNone
Label CSS ClassSet CSS classes on the input label. This is appended to the container's UI settings! Supports My Tokens.YesNone
Label CSS StylesSet inline styles on the input label. This is appended to the container's UI settings! Supports My Tokens.YesNone
Is RequiredSpecify if this field is required. Supports My Tokens.YesNone
Validation ConditionThis boolean expression is used to determine if this field validation will execute. It supports C# syntax. A common example is [SomeField] == "Some Value" or [SomeField].IndexOf("something") == 0. This field supports My Tokens. Note that the tokenization will take place when you submit the form and you have access to the values of the submitted fields.YesNone
Custom Validator #1NoNone
Custom Validator #2NoNone
Tokenize Validators?Check this box in order to tokenize the Validator fields and the Validation Condition field. This is useful when you need to use tokens for validation at Form Initialization.NoTrue
Field ID Token NameSimilarly to normal fields, the ID is the name/inputted id sanitized. This means that if you dynamically generate id's, they might contain spaces or other invalid characters. For this, we output the sanitized id of the field. Give a name to this token which holds the sanitized ID.NoNone