ColNumber dos not work

Discussions related to customizing hooks. Hooks are documented at http://bigprof.com/appgini/help/advanced-topics/hooks/
Post Reply
tymek2
Posts: 3
Joined: 2015-12-11 14:39

ColNumber dos not work

Post by tymek2 » 2016-02-05 18:20

Documentation says: An array that specifies which fields to use in the table view. It works by selecting some (or all) of the fields listed in the QueryFieldsTV property.

But the code below does nothing (there are only sorting symbols appearing next to column labels ;-)

function table_init(&$options, $memberInfo, &$args){
$options->ColNumber = array(3, 5, 6, 7, 8);
return true;
}

I would like to show different columns to different groups of users.

Post Reply