Page 1 of 1

Homepage - show all links?

Posted: 2017-08-09 14:22
by Nicolas
Hello, good day

I have appgini 5.51 and I would like to modify the homepage so users see all links instead of having available the ones on the first group when users enter in the app for the first time. (the attached image is a screen capture from the main homepage)

Also, how can the size of each box smaller in vertical ... so there can be more links at sight in a single screen.

Thank you in advance for a reply
Nicolas

Re: Homepage - show all links?

Posted: 2017-08-11 01:43
by peebee
Also, how can the size of each box smaller in vertical ... so there can be more links at sight in a single screen.
In AppGini, go to your project properties (4th icon on the toolbar). You'll see "Height of table panel in the homepage (pixels)". It will be set at 100 by default. Change that to 50 (for 50 pixels) or whatever. Regenerate code.

If you'd prefer not to regenerate the project, you could edit the height in this CSS which you will find in the <style> tags of home.php
.panel-body-description {
margin-top: 10px;
height: 100px;
overflow: auto;
}
modify the homepage so users see all links instead of having available the ones on the first group

It depends if you still want them "grouped" or all just displayed in one panel? In any event, you will be required to edit either the javascript at the bottom or the html of the home.php file

Re: Homepage - show all links?

Posted: 2017-08-11 17:58
by Nicolas
Thanks for the quick reply. I've made the changes and it works fine.
Regarding the menu lines... not much idea how to make all displayable without the need of clicking on the arrow ... I'll try and see.
Best regards

Nicolas