institut-de-genomique / Ultimate-DataTable

This AngularJS directive generate a HTML table with build-in fonctionnality like save, edit, remove, pagination etc...
http://institut-de-genomique.github.io/Ultimate-DataTable/
45 stars 26 forks source link

Hiding a column does not work #26

Closed BenderNETs closed 8 years ago

BenderNETs commented 8 years ago

I'm trying to hide a column and added the following in the config: ... "columns": [ { "property": "Id", "type": "text", "hide": true }, ...

The Id column still shows up. Is there anything I missed?

galbini commented 8 years ago

Hi,

You need active the hide function in configuration, see simple.html

{
"hide": {"active":true}
}

Best Regards, Guillaume

BenderNETs commented 8 years ago

Thanks Guillame :)