From: John L. <jla...@gm...> - 2013-09-08 03:14:28
|
On Sat, Sep 7, 2013 at 7:41 AM, ND <na...@ma...> wrote: > > When I run gridtable.wx.lua sample I saw checkboxes in Opened column draws > differently in currently editing cell and other cells. > In currently editing cell checkbox is exactly as Windows 7 system one (in > attached screen I point to it with red arrow). But checkboxes in other > cells (all lower checkboxes in that column) have ugly big and discrete > drawing. > > This is unfortunately how the grid control draws the check marks. The good looking checkbox is the native control which is only shown as needed for efficiency. > Is there a way to draw non-edited cells in one manner with edited ones? > Not in wxLua, this is something that should be fixed upstream in wxWidgets itself. And is there a way to check/uncheck all boolean cells in wxGrid by only > one click? > > You can catch a wxEVT_GRID_CELL_CHANGED and take action from there. Regards, John |