int width = colWidth[ col ] - colPadding;
int y = rowHeight + ( rowHeight * row );
int height = rowHeight;
if ( ( row + 1 ) < model.getNumChildren() ) {
Component c = (Component)Class.forName( components[ col ].toString().trim() ).newInstance();
c.addKeyListener( this );
c.setBounds( x, y, width, height );
Container panel = owner.getComponentPanel();
panel.add( c, 0 );
currentComponent = c;
XModel rowModel = ( XModel )model.get( row + 1 );