Fetch Choices | Zoho Creator Help

Fetch Choices

FormUtil

This util lets you manage the different functionalities in a form.

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

Fetch Choices in Java

loadChoices(ZCRecordValue zcRecordValue,boolean isChoiceSearch)

This loads first 50 choices (if available) for the lookup and integration fields.(add search)

Parameters:

zcRecordValueAn object which holds the details of the record.
isChoiceSearchSet value as 'true' if you are searching for choices or set 'false' if you want to load choice list.

 

loadMoreChoices(ZCRecordValue zcRecordValue, boolean isChoiceSearch)

This loads additional 50 choices (if available) for the lookup and integration fields. (search)

Parameters:

zcRecordValueAn object which holds the value of a field.
isChoiceSearchSet value as 'true' if you are searching for choices or set 'false' if you want to load choice list.

 

getCRMRecordByID(ZCField field, String recordId)

This returns the particular CRM record based on the record ID.

Parameters:

fieldAn object which holds the details of the CRM field.
recordIdAn object which holds the details of the CRM record.