I’m trying to hide the header row.
I want to remove the Header for Anonymous usersI’ve tried this in Scripts.
$(“ew-HeaderRow”).hide();
Where do I do this and is this correct
Thanks
I’m trying to hide the header row.
I want to remove the Header for Anonymous usersI’ve tried this in Scripts.
$(“ew-HeaderRow”).hide();
Where do I do this and is this correct
Thanks
Make sure that you specify the selector correctly. Use the browser Inspect option (right click, Inspect) to check for the correct selector.
Thanks got it sorted in client script in the list pageThis worked for me, if anyone else needs it, for a single page$(“ew-HeaderRow”).hide();
$(“#siteWideDiv”).hide();