Difference between revisions of "ZCS 6.0:Zimlet Developers Guide:Examples:Simple JSP via Action"
(→Download) |
|||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
+ | {{BC|Community Sandbox}} | ||
+ | __FORCETOC__ | ||
+ | <div class="col-md-12 ibox-content"> | ||
+ | =ZCS 6.0: Zimlet Developer Guide:Examples:Simple JSP via Action= | ||
+ | {{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}}{| 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]] | ||
Line 15: | Line 20: | ||
|[[ZCS 6.0:Zimlet Developers Guide:Example Zimlets|Example Zimlets]] | |[[ZCS 6.0:Zimlet Developers Guide:Example Zimlets|Example Zimlets]] | ||
|} | |} | ||
− | + | == Description == | |
− | |||
− | |||
This zimlet shows how to launch a JSP using the Zimlet Definition File <code><actionUrl></code> element. | This zimlet shows how to launch a JSP using the Zimlet Definition File <code><actionUrl></code> element. | ||
Line 39: | Line 42: | ||
{| cellspacing="0" cellpadding="5" border="1" | {| cellspacing="0" cellpadding="5" border="1" | ||
|Zimlet Package | |Zimlet Package | ||
− | |[ | + | |[https://github.com/Zimbra-Community/zimlets-foss/raw/master/Zimlet/src/zimlet/com_zimbra_example_simplejspaction.zip com_zimbra_example_simplejspaction.zip] |
|} | |} | ||
− | |||
== Useful Links == | == Useful Links == |
Latest revision as of 12:10, 3 November 2020
Contents
ZCS 6.0: Zimlet Developer Guide:Examples:Simple JSP via Action
- This article is a Work in Progress, and may be unfinished or missing sections.
![]() |
Introduction | ![]() |
Getting Started | ![]() |
Dev Environment Setup | ![]() |
Developing Zimlets | ![]() |
Advanced Concepts | ![]() |
API Specifications | ![]() |
Example Zimlets |
Description
This zimlet shows how to launch a JSP using the Zimlet Definition File <actionUrl>
element.
Definition File
<zimlet name="com_zimbra_example_simplejspaction" version="1.0" description="An example zimlet using a JSP file."> <zimletPanelItem label="JSP Example (via Action)" icon="zimbraIcon"> <toolTipText>Click to launch the JSP Example</toolTipText> <onClick> <canvas type="window" width="500" height="250" /> <actionUrl method="get" target="/service/zimlet/com_zimbra_example_simplejspaction/jspfile.jsp" /> </onClick> </zimletPanelItem> </zimlet>
Download
Zimlet Package | com_zimbra_example_simplejspaction.zip |
Useful Links