Как показать идентификатор атрибута из моего пользовательского тега в HTML-коде исходного кода
У меня есть пользовательский тег, использующий файл tld, главная роль моего тега заключается в создании таблицы в jsp.
Имя тега - это util: table и util: column в файле tld. Я объявляю эти теги (таблица и столбец) и некоторые атрибуты, а также (id, type, name), но когда я нажимаю на веб-странице для просмотра исходного кода, html-атрибуты а также идентификатор не отображается.
Мне нужно отобразить этот атрибут, потому что мне нужно создать всплывающую подсказку в определенном столбце, используя вызов jQuery по id из таблицы и столбца.
как это решить?
ниже моего тега исходного кода:
<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>