How to Hide a column on list page but have it in search

This public forum is for user-to-user discussions of PHPMaker. Note that this is not support forum.
Post Reply
schajx
User
Posts: 97

How to Hide a column on list page but have it in search

Post by schajx »

I have a field that I want on my extended search (so I can filter over it) but I do not want it to show up on the list page. How can I hide it?


johnberman
User
Posts: 210

Post by johnberman »

Cant you simply untick the box for the field on the list column and tick it for Advanced Search, ? using the table setup view

John B


arbei
User
Posts: 9292

Post by arbei »

You can hide the field in "Page_DataRendering" Server Event.

For example:
$this-><Field>->Visible = FALSE;


Post Reply