XImage image = new XImage( "../images/tux.jpg", "image" );
panel.add( image.getHTMLElement() );
}
public void addTable() {
XPanel panel = (XPanel)findComponent( obj, "panel" );
XTable table = new XTable();
table.setValue( 1, 1, "Cell 1-1" );
table.setValue( 1, 2, "Cell 1-2" );
table.setValue( 1, 3, "Cell 1-3" );
table.setValue( 1, 4, "Cell 1-4" );
table.setValue( 2, 1, "Cell 2-1" );
table.setValue( 2, 2, "Cell 2-2" );
table.setValue( 2, 3, "Cell 2-3" );
table.setValue( 2, 4, "Cell 2-4" );
table.setValue( 3, 1, "Cell 3-1" );
table.setValue( 3, 2, "Cell 3-2" );
table.setValue( 3, 3, "Cell 3-3" );
table.setValue( 3, 4, "Cell 3-4" );
table.setBorder( 1 );
panel.add( table.getHTMLElement() );
}