I have a custom tag using tld file the principal role of my tag is create a table in jsp.
The tag name is util:table and util:column in tld file I declare this tags (table and column) and some attributes as well as (id,type,name) but when I click in web page to view source code html the attributes as well as id are not display.
I need display that attribute because I need create a tooltip in determinate column using jQuery calling by id from table and column.
how to solve this ?
below my source code tag:
<tag>
<name>coluna</name>
<tag-class>br.si.util.tags.ColunaTag</tag-class>
<body-content>JSP</body-content>
<description>Create table</description>
<attribute>
<name>title</name>
<required>true</required>
<rtexprvalue>false</rtexprvalue>
<type>String</type>
<description>title</description>
</attribute>
<attribute>
<name>property</name>
<required>true</required>
<rtexprvalue>false</rtexprvalue>
<type>String</type>
<description>property</description>
</attribute>
<attribute>
<name>width</name>
<required>false</required>
<rtexprvalue>false</rtexprvalue>
<type>String</type>
<description>width</description>
</attribute>
<attribute>
<name>type</name>
<required>false</required>
<rtexprvalue>false</rtexprvalue>
<type>String</type>
<description></description>
</attribute>
<attribute>
<name>id</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
<type>String</type>
<description></description>
</attribute>
<attribute>
<name>styleClass</name>
<required>false</required>
<rtexprvalue>false</rtexprvalue>
<type>String</type>
<description>styleClass</description>
</attribute>
<attribute>
<name>hidden</name>
<required>false</required>
<rtexprvalue>false</rtexprvalue>
<type>boolean</type>
<description>hidden</description>
</attribute>
<attribute>
<name>nowrap</name>
<required>false</required>
<rtexprvalue>true</rtexprvalue>
<type>boolean</type>
<description>nowrap</description>
</attribute>
</tag>