Hide Header Row

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
crash
User
Posts: 151

Hide Header Row

Post 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


MichaelG
User
Posts: 1110

Post by MichaelG »

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


crash
User
Posts: 151

Post 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();


Post Reply