Hi
I want to hide the record selector column in table view.
how do I go about achieving this?
regards
John
Hide Record Selector Column
Re: Hide Record Selector Column
Hi ,
you can use the TABLENAME_init function and set the ShowTableHeader = 0
you can use the TABLENAME_init function and set the ShowTableHeader = 0
Any help offered comes with the best of intentions. Use it at your own risk. In any case, please make a backup of your existing environment before applying any changes.
Re: Hide Record Selector Column
Thanks for the reply. Unfortunately ShowTableHeader = 0 turns of titles and field selector button only.
Re: Hide Record Selector Column
Hi,
ok, can you post an image of what you want to hide
ok, can you post an image of what you want to hide
Any help offered comes with the best of intentions. Use it at your own risk. In any case, please make a backup of your existing environment before applying any changes.
Re: Hide Record Selector Column
Screenshot attached. Hope this clarifies what I need hidden.
regards John
regards John
- Attachments
-
- column.jpg (79.15 KiB) Viewed 2836 times
Re: Hide Record Selector Column
Hi,
you can try
you can try
Code: Select all
function tablename_footer($contentType, $memberInfo, &$args){
$footer='';
switch($contentType){
case 'tableview':
$footer='<script>$j("td:first-child").remove();$j("tr th:first").remove();</script>';
break;
Any help offered comes with the best of intentions. Use it at your own risk. In any case, please make a backup of your existing environment before applying any changes.
Re: Hide Record Selector Column
Thank you pböttcher
that worked just as I wanted. You're a champion!
regards John
that worked just as I wanted. You're a champion!
regards John