Using Cascading Select within Live Form
We will see how to configure cascading selects for Live Form fields using the on Change Event. We are placing the Live Form within a list.
- Use cascaded selects in Live form within a list.
- Use an on Change event which will have oldval and newval and newval can be used to filter data in the other select widget.
- Update of rows in Live form with form data mapped to current item of the list.
We will be using the following JavaScript function:
Page.liveform1_categorytestChange = function($event, widget, item, currentItemWidgets, newVal, oldVal) { Page.Variables.selectsubcategory.setInput('type', newVal.category); Page.Variables.selectsubcategory.update(); };
- 1. Live Form Basic Usage
- 2. How to split live form
- 3. How to link live form to another widget
- 4. How to configure related fields in a Live Form
- 5. How to use cascading select and automplete widgets for fields in a Live Form
- 6. How to configure cascading select for fields in a Live Form
- 7. How to add master-detail records from the same Live Form
- 8. How to use cascaded Live Filter to populate Live Form
- 9. How to add master-detail records from Live Form using Wizard
- 10. How to progressively add fields to a record using Wizard
- 11. How to accumulate data over multiple steps in a Wizard and save at the last step