Question regarding Tooltip
2 Feb 2012 11:05:54 GMT
5 Feb 2012 03:12:21 GMT
5 Feb 2012 03:12:21 GMT
Hi Prafull,
Yes, you can change tooltip by
Your_Component.setTooltip (Popup);
For example,
<zk>
<div>Select one popup then mouse over test label to show the tooltip</div>
<div height="10px"></div>
<label id="lb" value="test label" />
<div height="20px"></div>
<popup id="popupOne">popup one</popup>
<popup id="popupTwo">popup two</popup>
<popup id="popupThree">popup three</popup>
<popup id="popupFour">popup four</popup>
<radiogroup
onCheck='lb.setTooltip(lb.getPage().getFellow("popup"+self.selectedItem.value))'>
<radio label="use popup one" value="One" />
<radio label="use popup two" value="Two" />
<radio label="use popup three" value="Three" />
<radio label="use popup four" value="Four" />
</radiogroup>
</zk>
6 Feb 2012 14:41:01 GMT
6 Feb 2012 14:41:01 GMT
Thanks for looking to the problem
If I want to use composer class. In that If there is any variable containing an image if it is not present then I want to show the text, can I do it? if yes then how can I perform this?
Thanks in advance
ZK - Open Source Ajax Java Framework
Is it possible to change the Tooltip depending on conditions?
I have 4 Popups I want to show the appropriate Popup which depends on particular condition..?
Thanks