Re: hiding a grid column

2011-05-02 Thread Mark Dootson
Hi, HideCol is not implemented in wxWidgets 2.8.10 (or any 2.8 version ). However, the implementations in later wxWidgets are just simple wrappers around existing size methods: void HideRowLabels() { SetRowLabelSize( 0 ); } void HideColLabels() { SetColLabelSize( 0 ); } void HideRow(int row)

hiding a grid column

2011-04-25 Thread Erik Colson
ehlo, I used to keep metadata for a data grid in a separate array or hash. When that data is no more than a hidden id, I'd find it preferable to put this in a column which would be hidden from the user. I tried Wx::Grid->HideCol which seems not implemented in my wxPerl version based on wxwidgets