[fxruby-users] resizable table headers
Lyle Johnson
lyle at knology.net
Thu Mar 3 21:03:43 EST 2005
On Mar 3, 2005, at 2:27 PM, Joel VanderWerf wrote:
> I'm already doing that:
>
> super(inner_frame, 0, 0, nil, 0,
> TABLE_COL_SIZABLE|TABLE_ROW_SIZABLE|LAYOUT_FILL_X|LAYOUT_FILL_Y,
> 0,0,0,0, 2,2,2,2)
Ah, I see it. You're still passing the visibleRows and visibleColumns
arguments (the 2nd and 3rd arguments) to FXTable.new. Those two got
dropped for FXRuby 1.2. Try this instead:
super(inner_frame, nil, 0,
TABLE_COL_SIZABLE|TABLE_ROW_SIZABLE|LAYOUT_FILL_X|LAYOUT_FILL_Y,
0,0,0,0, 2,2,2,2)
Hope this helps,
Lyle
More information about the fxruby-users
mailing list