Annotate Components Created Manually"

From Documentation
m (Created page with '{{ZKDevelopersGuidePageHeader}} You can annotate a component at the run time by use of the <tt>addAnnotation</tt> method of the <javadoc type="interface">org.zkoss.zk.ui.sys.Com…')
 
m (correct highlight (via JWB))
 
Line 1: Line 1:
 
{{ZKDevelopersGuidePageHeader}}
 
{{ZKDevelopersGuidePageHeader}}
  
You can annotate a component at the run time by use of the <tt>addAnnotation</tt> method of the <javadoc type="interface">org.zkoss.zk.ui.sys.ComponentCtrl</javadoc> interface.
+
You can annotate a component at the run time by use of the <code>addAnnotation</code> method of the <javadoc type="interface">org.zkoss.zk.ui.sys.ComponentCtrl</javadoc> interface.
  
 
<source lang="java" >
 
<source lang="java" >

Latest revision as of 10:35, 19 January 2022

Annotate Components Created Manually


Stop.png This documentation is for an older version of ZK. For the latest one, please click here.


You can annotate a component at the run time by use of the addAnnotation method of the ComponentCtrl interface.

Listbox listbox = new Listbox();
listbox.addAnnotation("some", null);



Last Update : 2022/01/19

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.