PageUtil | Zoho Creator Help

ZCPageAPIUtil

This utility lets you make use of the pages 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.
getHtmlView(ZCComponent pageComponent)

Returns the HTML string that has been configured in the HTML page (Creator 4).

Parameters:

ZCComponentAn object that holds the details of the specified component.

 

getZMLString(ZCComponent pageComponent)

Returns the ZML response for the specified page (Creator 5).

Parameters:

ZCComponentAn object that holds the details of the specified component.

 

executeFunction(ZCComponent zcComponent, String elementId, String actionConfig)

Executes the custom function in the specified page (Creator 5).

Parameters:

ZCComponentAn object that holds the details of the specified component.
elementIdThe ID of the button.
actionConfigThe action config value received in the ZML snippet.

 

getMyLibraryImageSourceDownloadUrl(ZCComponent zcComponent, String fileName)

Returns the download URL for the image uploaded in the page (Creator 5).

Parameters:

ZCComponentAn object that holds the details of the specified component.
fileNameThe file name of the specified image.

 

getDisplayData(ZCComponent zcComponent, List <string> IDs)

Returns the data for the Display Data in the specified page. (Creator 5)

Parameters:

ZCComponentAn object that holds the details of the specified component.
IDsThe list of element IDs in the specified page.