public XTextArea( String value, String id )
{
super();
HTMLTextAreaElement textarea = (HTMLTextAreaElement)htmlDoc.createElement( "TEXTAREA" );
Node text = htmlDoc.getBody().getFirstChild().cloneNode( true );
textarea.appendChild( text );
textarea.setId( id );
textarea.setValue( value );
textareaElement = textarea;
}