> 1) If a column is set to be 1* the width returned from the getWidth() method
> is '1'. 2* is '2'.  Would it be possible to add a getWidth() that returns a
> string (which could return 1*) and one the returns an int (the actual
> current width)?  I would like to get the actual width, is there a way to do
> this currently if using '1*'?

Yes, you can call getColumnBounds() or getCellBounds().

> 2) In the prepare method the last statement tries to adjust the columns to
> fill the tableview.  However calling tableView.getWidth() returns 0.  Is
> there a way to get this value on startup?

You can't get the width until the table view has been laid out, which happens 
at the end of the current system event. If you queue a callback using 
ApplicationContext.queueCallback(), you should be able to get the column width.

G


Reply via email to