Page 1 of 1
Table Groups
Posted: 2022-07-15 16:36
by dlee
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
Re: Table Groups
Posted: 2022-07-15 17:25
by jsetzer
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.
Re: Table Groups
Posted: 2022-07-15 17:32
by jsetzer
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
Re: Table Groups
Posted: 2022-07-15 18:30
by dlee
Thanks Jan
Re: Table Groups
Posted: 2022-07-15 20:24
by dlee
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
Re: Table Groups
Posted: 2022-07-16 01:58
by jsetzer
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?
Re: Table Groups
Posted: 2022-07-18 16:32
by dlee
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
Re: Table Groups
Posted: 2022-07-19 20:59
by pbottcher
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>
Re: Table Groups
Posted: 2022-07-20 01:42
by dlee
Thank you pbottcher