Page 1 of 1

Hide Header Row

Posted: Mon Mar 25, 2024 4:44 am
by crash

I'm trying to hide the header row.
I want to remove the Header for Anonymous users

I've tried this in Scripts.
$("ew-HeaderRow").hide();

Where do I do this and is this correct
Thanks


Re: Hide Header Row

Posted: Mon Mar 25, 2024 6:47 am
by MichaelG

Make sure that you specify the selector correctly. Use the browser Inspect option (right click, Inspect) to check for the correct selector.


Re: Hide Header Row

Posted: Tue Mar 26, 2024 5:39 am
by crash

Thanks got it sorted in client script in the list page

This worked for me, if anyone else needs it, for a single page

$("ew-HeaderRow").hide();
$("#siteWideDiv").hide();