UINode node
)throws IOException
{
super.prerender( context, node);
UINode labelChild = getNamedChild(context, node, LABEL_CHILD);
// render the label child, render it before you change any properties!
// Ex:
// 1. One
// 2. Two
// a. A
// 3. Three
// In the example above "Two" would be the label child and appears to be
// part of the numbered list
if ( labelChild != null )
{
ResponseWriter writer = context.getResponseWriter();
writer.startElement( SPAN_ELEMENT, null );
labelChild.render(context);
writer.endElement(SPAN_ELEMENT);
}
// set the selected property to false