Deluge script executions | Zoho Creator Help

Deluge script executions

ZCFormAPIUtil

This utility lets you make use of the forms of your Zoho Creator applications in your Android apps.

Note: Zoho Creator's Mobile SDK is currently a Beta feature. We do not recommend using it for apps in the production stage.

Deluge script executions in Java

executeOnUserInput(ZCField zcField)

This should be called to execute the "on user input" deluge script of a field in a form. It should be called after a user has completed giving input for the field.

Parameters:

zcFieldAn object which holds the details of the field.

 

executeOnAddRowForSubForm(ZCForm zcForm, ZCField field)

This should be called to execute the "on add row" deluge script in a subform every time a new entry has to be added. It should be called before showing the subform.

Parameters:

zcFormThe activity instance that has to be used to invoke the next activity.
zcFieldAn object which holds the details of the field.

 

executeOnDeleteRowForSubForm(ZCForm zcForm, ZCField field)

This should be called to execute the "on delete row" deluge script in a subform every time an entry is deleted.

Parameters:

zcFormThe activity instance that has to be used to invoke the next activity.
zcFieldAn object which holds the details of the field.

 

executeOnUserInputForSubFormField(ZCForm subForm, ZCField onUserInputField)

This should be called to execute the "on user input" deluge script of a field in a subform. It should be called after a user has completed giving input for the field.

Parameters:

subFormAn object which holds the details of the subform.
onUserInputFieldAn object which holds the details of the field.

 

buttonClick(ZCButton zcButton)

This should be called to execute the "button click" workflow when a button is clicked in a form where data is not stored in Zoho Creator.

Parameters:

zcButtonAn object which holds the details of the button.