ZCS 6.0:Zimlet Developers Guide:Examples:Simple JSP via Ajax Async: Difference between revisions
No edit summary |
|||
Line 4: | Line 4: | ||
=ZCS 6.0: Zimlet Developer Guide:Examples:Simple JSP via AJAX Async= | =ZCS 6.0: Zimlet Developer Guide:Examples:Simple JSP via AJAX Async= | ||
{{KB|{{Unsupported}}|{{ZCS 7.0}}|{{ZCS 6.0}}|}} | {{KB|{{Unsupported}}|{{ZCS 7.0}}|{{ZCS 6.0}}|}} | ||
{{WIP}}{| cellspacing="0" cellpadding="5" style="border: 1px solid rgb(153, 153, 170); margin: 0pt 0.5em 0.5em 0pt; float: none; background-color: rgb(249, 249, 255);" | {{WIP}} | ||
{{warning|1=You are looking at legacy Zimlet documentation. For Zimbra Modern UI Zimlet development go to: https://wiki.zimbra.com/wiki/DevelopersGuide#Zimlet_Development_Guide.}} | |||
{| cellspacing="0" cellpadding="5" style="border: 1px solid rgb(153, 153, 170); margin: 0pt 0.5em 0.5em 0pt; float: none; background-color: rgb(249, 249, 255);" | |||
|[[Image:zdg-6-menu-icon-zimbra.jpg|20px]] | |[[Image:zdg-6-menu-icon-zimbra.jpg|20px]] | ||
|[[ZCS 6.0:Zimlet Developers Guide:Introduction|Introduction]] | |[[ZCS 6.0:Zimlet Developers Guide:Introduction|Introduction]] |
Latest revision as of 06:03, 17 July 2021
ZCS 6.0: Zimlet Developer Guide:Examples:Simple JSP via AJAX Async
- This article is a Work in Progress, and may be unfinished or missing sections.
![]() |
You are looking at legacy Zimlet documentation. For Zimbra Modern UI Zimlet development go to: https://wiki.zimbra.com/wiki/DevelopersGuide#Zimlet_Development_Guide. |
![]() |
Introduction | ![]() |
Getting Started | ![]() |
Dev Environment Setup | ![]() |
Developing Zimlets | ![]() |
Advanced Concepts | ![]() |
API Specifications | ![]() |
Example Zimlets |
Description
This zimlet shows how to launch a JSP from within the Zimlet Handler Object using Ajax and read the response asynchronously.
Definition File
<zimlet name="com_zimbra_example_simplejspasync" version="1.0" description="An example zimlet using a JSP file."> <include>com_zimbra_example_simplejspasync.js</include> <handlerObject>com_zimbra_example_simplejspasync_HandlerObject</handlerObject> <zimletPanelItem label="JSP Example (via Ajax)" icon="zimbraIcon"> <toolTipText>Click to launch the JSP Example</toolTipText> </zimletPanelItem> </zimlet>
Handler Object
The following code snippet from the zimlet JavaScript Handler Object show making the Ajax call to the JSP file and setting the callback method to read the response asyncrhonously:
/** * Displays the zimlet jsp page. * */ com_zimbra_example_simplejspasyncHandlerObject.prototype._displayDialog = function() { var jspUrl = this.getResource("jspfile.jsp"); var callback = new AjxCallback(this, this._rpcCallback, ["param1", "param2"]) AjxRpc.invoke(null, jspUrl, null, callback, true); };
When the JSP page response is received, the callback method is executed:
/** * Called from the ajax callback. * */ com_zimbra_example_simplejspasyncHandlerObject.prototype._rpcCallback = function(p1, p2, response) { if (response.success == true) { appCtxt.getAppController().setStatusMsg(response.text); } };
Download
Zimlet Package | com_zimbra_example_simplejspasync.zip |