Difference between revisions of "ZCS 6.0:Zimlet Developers Guide:Examples:Simple JSP via Action"
(→Download) |
|||
(4 intermediate revisions by 3 users not shown) | |||
Line 1: | Line 1: | ||
− | {| 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);" | + | {{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);" | ||
|[[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]] | ||
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 == | == Description == | ||
Line 38: | 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 == | ||
Line 50: | Line 53: | ||
− | {{Article Footer|Zimbra Collaboration | + | {{Article Footer|Zimbra Collaboration Server 7.0|12/22/2009}} |
[[Category:Developers]] | [[Category:Developers]] | ||
[[Category:Zimlets]] | [[Category:Zimlets]] | ||
+ | [[Category:ZCS 7.0]] | ||
[[Category:ZCS 6.0]] | [[Category:ZCS 6.0]] |
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