Is there a way to remove the Table Name?

This sub-forum is for discussing all topics related to AppGini Helper JavaScript Library, provided by bizzworxx as a third-party AppGini plugin.
Post Reply
mohamed
Veteran Member
Posts: 80
Joined: 2020-04-19 16:18

Is there a way to remove the Table Name?

Post by mohamed » 2021-08-22 19:12

Hello,

Is there a way to remove the Table Name and save the space (top of the table/box of fields) in Detail View using the AppGini Helper JavaScript Library ?
Attachments
Remove Table Name.PNG
Remove Table Name and Save Space
Remove Table Name.PNG (85.86 KiB) Viewed 2313 times
THANK YOU...
AppGini Pro 24.11 -
Calendar - Search Page Maker - Summary Reports - Mass Update - DataTalk -
bizzworxx AppGini Helper JabaScript Library - bizzworxx Inline Detail-View - bizzworxx Helper Pack - AppGini Helper Packaging Tool -
Udemy course

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

Re: Is there a way to remove the Table Name?

Post by jsetzer » 2021-08-22 20:37

I think there isn't, but I can add this feature to next version. I'm just wondering what shall happen to the add-new button
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

mohamed
Veteran Member
Posts: 80
Joined: 2020-04-19 16:18

Re: Is there a way to remove the Table Name?

Post by mohamed » 2021-08-23 04:44

Jsetzer,

Thanks again, I will stay tuned for it, and for the other tools :)

All the best with your great help ..
THANK YOU...
AppGini Pro 24.11 -
Calendar - Search Page Maker - Summary Reports - Mass Update - DataTalk -
bizzworxx AppGini Helper JabaScript Library - bizzworxx Inline Detail-View - bizzworxx Helper Pack - AppGini Helper Packaging Tool -
Udemy course

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

Re: Is there a way to remove the Table Name?

Post by jsetzer » 2021-11-24 07:19

:!: THIS IS FOR TABLE VIEW

Good morning,

in latest version of AppGini Helper Javascript Library you can use this:

Code: Select all

// file: hooks/TABLENAME-tv.js
jQuery(function () {
    AppGiniHelper.tv.getPageHeader().hide();
});
Known limits

Please note: This will hide the page header but it will not remove the top margin (gap):

chrome_B2BispzfF2.png
chrome_B2BispzfF2.png (128.19 KiB) Viewed 2119 times

If you'd like to hide the whole row including the quicksearch, you can use the following code instead:

Code: Select all

AppGiniHelper.tv.getPageHeader().closest(".page-header").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

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

Re: Is there a way to remove the Table Name?

Post by jsetzer » 2021-11-24 07:28

:!: THIS IS FOR DETAIL VIEW

In latest version there is no equivalent method for Detail View but I am going to add it for next version.

So, for Detail View you can try this:

Code: Select all

// file: hooks/TABLENAME-dv.js
jQuery("form[name='myform'] > .page-header").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

mohamed
Veteran Member
Posts: 80
Joined: 2020-04-19 16:18

Re: Is there a way to remove the Table Name?

Post by mohamed » 2022-01-08 13:22

Thank you ...
THANK YOU...
AppGini Pro 24.11 -
Calendar - Search Page Maker - Summary Reports - Mass Update - DataTalk -
bizzworxx AppGini Helper JabaScript Library - bizzworxx Inline Detail-View - bizzworxx Helper Pack - AppGini Helper Packaging Tool -
Udemy course

Post Reply