Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
V1Beta
-
None
-
None
Description
Using the <netui:anchor> tag, in order to get body text to showup between the <a></a> tags, the text must be embedded like:
<netui:anchor href="foo.jsp">
Go to foo
</netui:anchor>
which results (generally) in <a href="foo.jsp>Go to foo</a>. It'd be useful if there was a "value" or "text" attribute on the anchor so that the same thing could be expressed as:
<netui:anchor href="foo.jsp" text="Go to foo"/>
which would eliminate the floating body text inside of the anchor tag.