Details
-
New Feature
-
Status: Resolved
-
Trivial
-
Resolution: Fixed
-
2.0 branch (discontinued), 1.3.0-beta1
-
None
Description
To let a TABPanel's title label display whatever we want (e.g. to setEscapeModelString(false)) we need a callback method like the one for the linke the one for
protected WebMarkupContainer newLink(MarkupContainer parent, String linkId, final int index)
{
return new Link(parent, linkId)
{
private static final long serialVersionUID = 1L;
@Override
public void onClick()
};
}
Then we can overwrite the e.g. newLinkLabel method in an annonymous class.