Hello friends
I have 3 doubts that I would like to see if anyone knows how to solve.
1 - When logging into the application, AppGini displays the group bars (when configured) and the first tab opens by itself. I would like to know if there is a way to disable this automatic opening.
2 - Try to check if the application is running on a cell phone screen or a PC. If it's on a PC, it will automatically go to a listing in a table and if it's on a cell phone, open the group tabs normally
Does anyone know where I can adjust this?
Thanks
Help
Re: Help
There is an older thread and a hooks-only solution there:1 - When logging into the application, AppGini displays the group bars (when configured) and the first tab opens by itself. I would like to know if there is a way to disable this automatic opening.
viewtopic.php?t=4542#p18513
Kind regards,
<js />
My AppGini Blog:
https://appgini.bizzworxx.de/blog
You can help us helping you:
Please always put code fragments inside
<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- Marcelo Vitoria
- Veteran Member
- Posts: 51
- Joined: 2016-10-11 12:08
Re: Help
I now need to find a way to not display the panels when in use on a computerjsetzer wrote: ↑2023-05-24 02:25There is an older thread and a hooks-only solution there:1 - When logging into the application, AppGini displays the group bars (when configured) and the first tab opens by itself. I would like to know if there is a way to disable this automatic opening.
viewtopic.php?t=4542#p18513
Thank you for your help
Re: Help
As a starting point:
1) After login direct the logged in user to a custom page, for example to
2) In
(1) can be done in login function of
(2) should be possible by evaluating the page's HEADER. Redirect can be done by using PHP's header location function.
1) After login direct the logged in user to a custom page, for example to
go.php
.2) In
go.php
detect environment (desktop or mobile) and redirect to index.php
(standard dashboard) or to TABLENAME_view.php
(1) can be done in login function of
__global.php
, I think(2) should be possible by evaluating the page's HEADER. Redirect can be done by using PHP's header location function.
Kind regards,
<js />
My AppGini Blog:
https://appgini.bizzworxx.de/blog
You can help us helping you:
Please always put code fragments inside
<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