- Posts: 8
- Thank you received: 0
Please Log in or Create an account to join the conversation.
I also tried setting the width of the column to zero, hoping it would hide, but no good.
Any thoughts ?
Would you like a login to take a look ?
I'd really like to get this resolved as soon as possible.
Please Log in or Create an account to join the conversation.
This is what I did: I modified the attached grid view to exclude columns with "_internal_" heading from the view.
Note that this is limited to my simple grid and might not work in combination with other features, so no warranty .
You can run a diff to find my changes or just search for "_internal_" and you will get the idea.
I am hoping that they would incorporate something like this into the product.
To use it, save your gridview.php file under com_grid\layouts (I think) and place this one instead. Put "_internal_" (without quotes) as a heading of any column you don't want to show, but still want included for other reasons.
Please Log in or Create an account to join the conversation.
There was a little bug:
To make the things work, just change line 139 in components/com_grid/GridBuilder.php from:
if($this->_config->link[2*$i]!=0 && !in_array($this->_config->link[2*$i+1], $query_columns))
if($this->_config->link[2*$i]!="0" && !in_array($this->_config->link[2*$i+1], $query_columns))
Please Log in or Create an account to join the conversation.
Well, I already have a work-around, which I am hoping would be incorporated - maybe together with the above fix - I will wait for the official update.
Thank you.
Please Log in or Create an account to join the conversation.