SubmitHandler
This interface is to assign a callback (from the Form) upon successful form submission.
Methods:
On successful submission of the form this method will be triggered with ZCActionResult with contains the resultant form's success message, status, record ID and so on.
Report attributes
When including your Creator application's reports in your Android apps, you can add the following parameters as querystring to customize the report's UI:
Methods | Description |
void setTitleEnabled(boolean isTitleEnabled) | This will show/hide titlebar in report |
void setHeaderMenuEnabled(boolean isHeaderMenuEnabled) | This will show/hide menu options in titlebar in report |
void setFooterEnabled(boolean isFooterEnabled) | This will show/hide the footer bar in report |
void setSearchEnabled(boolean is search enabled) | This will show/hide search option in report if footer enabled |
void setGroupEnabled(boolean isGroupEnabled) | This will show/hide groupby option in report if footer enabled |
void setSortEnabled(boolean isSortEnabled) | This will show/hide sort option in report if footer enabled |
void setFilterEnabled(boolean isFilterEnabled) | This will show/hide filter option in report if footer enabled |
void setCustomFilterEnabled(boolean isCustomFilterEnabled) | This will show/hide custom filters in report if titlebar enabled |
void setShowTotalRecordsCount(boolean showTotalRecordsCount) | This will show/hide total records count in report if footer enabled |
void setPrintEnabled(boolean isPrintEnabled) | This will enable/disable print option in record actions |
void setExportEnabled(boolean isExportEnabled) | This will enable/disable export option if titlebar enabled |