Hi, Is it possible to wrap text inside an FXTable cell, just like it is possible with an FXText object? I''d like to display and edit multi-line text inside an FXTable cell. Thanks! Philippe
Jeroen van der Zijp
2008-May-06 14:16 UTC
[fxruby-users] Wrap text inside an FXTable cell?
On Tuesday 06 May 2008, Philippe Lang wrote:> Hi, > > Is it possible to wrap text inside an FXTable cell, just like it is > possible with an FXText object? I''d like to display and edit multi-line > text inside an FXTable cell.FXTableItem can already handle multiple lines of text, separated by newlines. However, the default edit control is FXTextField, which edits only a single line. You can however subclass FXTableItem and have it be edited by FXText instead; see FXComboTableItem on how that''s done. Hope this helps, Jeroen