Paul McNary wrote:
> in the grid's:
> 
> def afterInitAll(self):
>       self.RowHeight = 150
>       for col in self.Columns:
>          col.WordWrap = True
> 
> The RowHeight statment is being displayed
> as set above but no word wrap.

Are the columns defined yet? Add a:
        print self.Columns
in there, and then note the output when you run it.

I know that with my grids, I usually do something like:

grd = dabo.ui.dGrid(self, DataSource=myBiz)
grd.addColumn(...)
grd.addColumn(...)

So when the grid's afterInitAll() is fired, the addColumn() calls 
haven't been made yet.

Paul



_______________________________________________
Post Messages to: [email protected]
Subscription Maintenance: http://leafe.com/mailman/listinfo/dabo-users
Searchable Archives: http://leafe.com/archives/search/dabo-users
This message: http://leafe.com/archives/byMID/[EMAIL PROTECTED]

Reply via email to