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

Discussions related to customizing hooks. Hooks are documented at http://bigprof.com/appgini/help/advanced-topics/hooks/
Post Reply
fgazza
Veteran Member
Posts: 205
Joined: 2019-04-30 17:37

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

Post by fgazza » 2020-07-02 17:45

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

User avatar
jsetzer
AppGini Super Hero
AppGini Super Hero
Posts: 1817
Joined: 2018-07-06 06:03
Location: Kiel, Germany
Contact:

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

Post by jsetzer » 2020-07-02 18:14

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.
Kind regards,
<js />

My AppGini Blog:
https://appgini.bizzworxx.de/blog

You can help us helping you:
Please always put code fragments inside [code]...[/code] blocks for better readability

AppGini 24.10 Revision 1579 + all AppGini Helper tools

fgazza
Veteran Member
Posts: 205
Joined: 2019-04-30 17:37

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

Post by fgazza » 2020-07-02 19:36

Sorry! I mean detail view!
Thanks

User avatar
jsetzer
AppGini Super Hero
AppGini Super Hero
Posts: 1817
Joined: 2018-07-06 06:03
Location: Kiel, Germany
Contact:

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

Post by jsetzer » 2020-07-03 05:01

Code: Select all

$j("#deselect").hide();
Kind regards,
<js />

My AppGini Blog:
https://appgini.bizzworxx.de/blog

You can help us helping you:
Please always put code fragments inside [code]...[/code] blocks for better readability

AppGini 24.10 Revision 1579 + all AppGini Helper tools

fgazza
Veteran Member
Posts: 205
Joined: 2019-04-30 17:37

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

Post by fgazza » 2020-07-03 18:11

It works! Thank you!

Post Reply