Difference between revisions of "ZCS 6.0:Zimlet Developers Guide:Examples:Panel Item Clicked XML"
(→ZCS 6.0: Zimlet Developer Guide:Examples:Panel Item Clicked XML) |
|||
Line 46: | Line 46: | ||
{| 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_panelitemclickedxml.zip com_zimbra_example_panelitemclickedxml.zip] |
|} | |} | ||
Latest revision as of 11:55, 3 November 2020
Contents
ZCS 6.0: Zimlet Developer Guide:Examples:Panel Item Clicked XML
- 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 will display in the Zimlet panel. Single-click or double-click with the left mouse button on the panel item and URL are opened in new windows. On a single-click, a 300x300 window is opened and http://maps.google.com is loaded. On a double-click, a 600x400 window is opened and http://www.yahoo.com is loaded.
Definition File
<zimlet name="com_zimbra_example_panelitemclickedxml" version="1.0" description="Demos panel item single and double clicked via XML"> <zimletPanelItem label="Panel Item Clicked (via XML) Zimlet"> <toolTipText>Single or Double Click</toolTipText> <onClick> <canvas type="window" width="300" height="300" /> <actionUrl method="get" target="http://maps.google.com" /> </onClick> <onDoubleClick> <canvas type="window" width="600" height="400" /> <actionUrl method="get" target="http://www.yahoo.com" /> </onDoubleClick> </zimletPanelItem> </zimlet>
Download
Zimlet Package | com_zimbra_example_panelitemclickedxml.zip |