mirror of
https://github.com/pocoproject/poco.git
synced 2025-11-25 06:36:37 +01:00
added support for hidden columns
This commit is contained in:
@@ -45,6 +45,7 @@ TableColumn::TableColumn(Cell::Ptr pCellFormat):
|
||||
View(typeid(TableColumn)),
|
||||
_pCell(pCellFormat),
|
||||
_sortable(false),
|
||||
_hidden(false),
|
||||
_header()
|
||||
{
|
||||
if (_pCell)
|
||||
@@ -56,6 +57,7 @@ TableColumn::TableColumn(Cell::Ptr pCellFormat, const std::string& name, int wid
|
||||
View(typeid(TableColumn)),
|
||||
_pCell(pCellFormat),
|
||||
_sortable(sortable),
|
||||
_hidden(false),
|
||||
_header(name)
|
||||
{
|
||||
setWidth(width);
|
||||
|
||||
Reference in New Issue
Block a user