Hide Column, but still show on Search (v2025)

v2025

would like to hide a few columns from the listview, but still have them show for the search?, is this possible.

trying a few scenarios but no go. can hide he columns in page load, but trying to figure out how to still show in the Ex search section

Thanks
JS

You may use Page_DataRendering server event.

thanks..
that adds it to the actual listview... I'm hiding 3 fields there (country, region city), but want those 3 fields available on the search panel.
EG:

i have them selected for list and hid them on the page_load
but not visible on the listview, if that makes sense...

thanks.

I meant you can try set the field's Visible property in Page_DataRendering so the search panel above it (already rendered) will not be affected.

We're close lol

I can hide them on the list view no problem, but I'd like the fields to be available in the search panel for searching even though they're not displayed on the list view....

You should not hide the field from Fields setup -> List Page. You should keep enable it.

To hide the field from the table in the generated List page, simply set Visible's property of the field to false under Page_DataRendering server event that belongs to the List Page.