Reputation: 706
I have this two custom tags in my JSP: <gf:>
,<ctag:>
.
<gf:writeToolTip labelSet="None">
<ctag:property property="name" />
</gf:writeToolTip>
This code works fine and puts in the tooltip the value of property name
.
What I need to do is, to get the value of another property, but I don't know its name, and I don't have access to the backend code to see the ctag
definition. How to see every name of each property from <ctag:>
tag?
Upvotes: -1
Views: 138
Reputation: 1
JSP compiler using tags according to their DTD or schema definition which is defined by the taglib
directive. That includes the location of DTD that you can download and examine its source code in xml where all possible attributes are listed.
Upvotes: 1