Form Business Rules
在表单设计时,可以对表单的业务逻辑(显示、隐藏、禁用等)进行处理。 When the form is designed, the business logic of the form (display, hide, disable, etc.) can be processed.
Action Event
The form is processed logically in the event function by configuring events for the form fields.
js
function () {
// Hide form fields
this.hide('id')
// Displays fields hidden from the form
this.display('id')
// ...
}
Detailed configuration can be seen JS Action panel。
Visual Configuration ^1.6.0 ^3.6.0
Select Visual configuration in the action Settings, you can easily and intuitively configure the form business through the graphical interface, without writing Javascript code in the function.