Hide Checkbox Table View - Guests

The recommended method of customizing your AppGini-generated application is through hooks. But sometimes you might need to add functionality not accessible through hooks. You can discuss this here.
Post Reply
User avatar
ronwill
Veteran Member
Posts: 228
Joined: 2015-08-08 10:12
Location: Cheltenham UK +Weatherford USA

Hide Checkbox Table View - Guests

Post by ronwill » 2017-11-25 01:19

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 2220 times
Ron - Gloucestershire, UK: AppGini Pro V 23.15 Rev 1484 - LOVING IT!
Plugins: Mass Update + Search Page Maker + Summary Reports + Calendar + Messages
Bizzworxx: AppGiniHelper + Inline Detail View
Alejandro Landini: To-Do List + MPI + TV Field Editor
Other: Udemy Course

R Tammam
Veteran Member
Posts: 113
Joined: 2017-08-26 15:35

Re: Hide Checkbox Table View - Guests

Post by R Tammam » 2017-12-10 09:41

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

Post Reply