How to disable buttons and enable buttons on an eXtender form by using eXtender logic?
NOTE: This KB only applies for Extender 2010 and previous. These scripts are not valid on Extender 2013 and above.
The buttons on an eXtender form can be enabled or disabled using the following scripts.
The following 4 scripts will disable the buttons:
disable ‘Delete Button’ of window ‘User Defined Form’ of form <#FORM_NAME#>;
disable ‘Save Button’ of window ‘User Defined Form’ of form <#FORM_NAME#>;
disable ‘Clear Button’ of window ‘User Defined Form’ of form <#FORM_NAME#>;
disable ‘Duplicate Button’ of window ‘User Defined Form’ of form <#FORM_NAME#>;
The following 4 scripts will enable the buttons:
enable ‘Delete Button’ of window ‘User Defined Form’ of form <#FORM_NAME#>;
enable ‘Save Button’ of window ‘User Defined Form’ of form <#FORM_NAME#>;
enable ‘Clear Button’ of window ‘User Defined Form’ of form <#FORM_NAME#>;
enable ‘Duplicate Button’ of window ‘User Defined Form’ of form <#FORM_NAME#>;