How to Enable/Disable fields in a dialog If you need to enable/disable the dialog fields use dialogpostrun method in your code. here is a the some code sample for enable/disable dialog fields. public void dialogPostRun(DialogRunbase _dialog) { ; super(_dialog); // allow to call the event methods of this class (e.g. theaxapta1_modified() method) _dialog.dialogForm().formRun().controlMethodOverload(true); _dialog.dialogForm().formRun().controlMethodOverloadObject(this); } Now you can create event methods...(read more)
↧