hi,
just add a wicket:id to <html> and then within your page:
---
MarkupContainer html, container;
html = new WebMarkupContainer( "html" )
{
private static final long serialVersionUID = 1L;
@Override
public boolean isTransparentResolver()
{
return true;
}
};
html.add( new AttributeModifier( "xml:lang", lang ) );
html.add( new AttributeModifier( "lang", lang ) );
add( html );
---
all other elements can then added directly to the page as well.
best regards, --- jan.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]