Table Groups

If you're a new user of AppGini, feel free to ask general usage questions, or look for answers here.
Post Reply
dlee
Veteran Member
Posts: 137
Joined: 2020-04-14 00:21
Location: South Carolina, USA
Contact:

Table Groups

Post by dlee » 2022-07-15 16:36

I have 4 tables in my app. One of these tables I would like to NOT be in any group. Is this possible and if so how would you accomplish this?

Thanks,
TD

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

Re: Table Groups

Post by jsetzer » 2022-07-15 17:25

In AppGini there are checkboxes for hiding a table from dashboard and hiding a table from navmenu. If you don't want to see a specific table in navbar menu, just hide it.
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: 1814
Joined: 2018-07-06 06:03
Location: Kiel, Germany
Contact:

Re: Table Groups

Post by jsetzer » 2022-07-15 17:32

PS: I don't know any option for not-assigning a table to a group. But hiding it from dashboard and/or nav-menu will do the trick
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

dlee
Veteran Member
Posts: 137
Joined: 2020-04-14 00:21
Location: South Carolina, USA
Contact:

Re: Table Groups

Post by dlee » 2022-07-15 18:30

Thanks Jan

dlee
Veteran Member
Posts: 137
Joined: 2020-04-14 00:21
Location: South Carolina, USA
Contact:

Re: Table Groups

Post by dlee » 2022-07-15 20:24

Actually I want the table to appear on the homepage and in the nav-menu I just don't want to have it a member of a table-group. If that isn't an option I guess I just live with it.

TD

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

Re: Table Groups

Post by jsetzer » 2022-07-16 01:58

So, where do you want that table-link to appear, if not as a menu item of a table group menu? As a top-level link of the navbar itself?
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

dlee
Veteran Member
Posts: 137
Joined: 2020-04-14 00:21
Location: South Carolina, USA
Contact:

Re: Table Groups

Post by dlee » 2022-07-18 16:32

Sorry for being offline for awhile. Attached are two images that explain what I would like to happen. The image names say it all.

TD
Attachments
what is wanted.png
what is wanted.png (36.85 KiB) Viewed 1293 times
as is now.png
as is now.png (38.48 KiB) Viewed 1293 times

pbottcher
AppGini Super Hero
AppGini Super Hero
Posts: 1638
Joined: 2018-04-01 10:12

Re: Table Groups

Post by pbottcher » 2022-07-19 20:59

Hi,

you may try to add to the hooks/footer-extras.php

Code: Select all

<script>
$j(function() {
  $j('.btn.btn-primary.btn-block.btn-lg.collapser.vspacer-lg:contains("Main Section")').hide()
})
</script>
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.

dlee
Veteran Member
Posts: 137
Joined: 2020-04-14 00:21
Location: South Carolina, USA
Contact:

Re: Table Groups

Post by dlee » 2022-07-20 01:42

Thank you pbottcher

Post Reply