added support for hidden columns

This commit is contained in:
Peter Schojer
2008-07-08 12:43:07 +00:00
parent 795601ec64
commit 693db42cee
3 changed files with 23 additions and 0 deletions

View File

@@ -490,6 +490,8 @@ void TableRenderer::renderColumn(const Table* pTable, const TableColumn& tc, int
ostr << ",sortable:true";
else
ostr << ",menuDisabled:true";
if (tc.isHidden())
ostr << ",hidden:true";
static TableCellHandlerFactory& fty = TableCellHandlerFactory::instance();