Page 1 of 1

Hide Checkbox Table View - Guests

Posted: 2017-11-25 01:19
by ronwill
Does anyone know how I can "hide" the check box on table view (Guests) as I have a table that does not allow sorting, filters, etc. etc. so when table viewed by guest/anonymous user these check boxes do nothing & are not required. Having them there is a slight annoyance as I keep getting asked what they are for LOL (because I don't know how to hide them.

Thanks for help!!
Ron
AG Version 5.62 Rev 990
Captureag1.JPG
Captureag1.JPG (22.75 KiB) Viewed 2221 times

Re: Hide Checkbox Table View - Guests

Posted: 2017-12-10 09:41
by R Tammam
Hello ronwill,

if you inspect any of theses checkboxes , you will find that it took a 'record_selector' class,

so you can catch it using jQuery code
$j('.record_selector'),

and there maybe more than one checkbox , you will need to iterate over them using .each function in jquery ,

for each one you will need to hide i'ts parent which is the containing cell

all the code will be written using jQuery function