ZCS 6.0:Zimlet Developers Guide:Examples:Panel Item Clicked XML
From Zimbra :: Wiki
| Introduction | Getting Started | Dev Environment Setup | Developing Zimlets | Advanced Concepts | API Specifications | Example Zimlets |
|
Article Information |
|---|
| This article applies to the following ZCS versions. |
| |
| |
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 |
| Verified Against: Zimbra Collaboration Server 7.0 | Date Created: 01/18/2010 |
| Article ID: http://wiki.zimbra.com/index.php?title=ZCS_6.0:Zimlet_Developers_Guide:Examples:Panel_Item_Clicked_XML | Date Modified: 09/13/2011 |

