Page 1 of 1

Hide the "back" and "cancel" key from the table view of a record

Posted: 2020-07-02 17:45
by fgazza
Hi everyone.
Anyone know how to hide the "back" and "undo" keys from the table view of a record?

I would like to be able to do it through the hook file (php or -dv.js) of the table so that my personalization is preserved when I regenerate the files from appgini.

THANK YOU!

Fabiano

Re: Hide the "back" and "cancel" key from the table view of a record

Posted: 2020-07-02 18:14
by jsetzer
Are you sure you mean table view?

As far as I know there is a back-button in detail view but not in table view.

Re: Hide the "back" and "cancel" key from the DETAIL view of a record

Posted: 2020-07-02 19:36
by fgazza
Sorry! I mean detail view!
Thanks

Re: Hide the "back" and "cancel" key from the table view of a record

Posted: 2020-07-03 05:01
by jsetzer

Code: Select all

$j("#deselect").hide();

Re: Hide the "back" and "cancel" key from the table view of a record

Posted: 2020-07-03 18:11
by fgazza
It works! Thank you!