This topic is locked
[SOLVED]

 Hide / Turn Off Inline Edit Check Boxes, Checkbox, Checkboxes on List

8/28/2011 9:23:10 PM
PHPRunner General questions
M
MikeB941 author

PHPRUNNER 5.3 BUILD 7474
Best way (code insert in event perhaps) to turn off the inline edit check boxes on the list page if you don't want them (saw the example to turn off the edit selected button using $('span[@id=record_controls1]').hide(); in the list page javascript onload event and was wondering if there was something similar to turn off the check boxes, checkboxes, checkbox (rather than deleting them through the editor)
I have this code SOMEWHERE - I just can't find it.
Thanks a million! Take Care... Mike.

C
cgphp 8/29/2011

In the "Javascript OnLoad" event of the List page:

$("table[name='maintable'] thead").find("input[type='checkbox']").parents().eq(0).hide();

$("td[ieditcont='checkBox']").hide();