AdminLTE Plugin for AppGini

Topics related to AppGini plugins/add-ons go here.
User avatar
rngoda
Veteran Member
Posts: 124
Joined: 2020-02-05 16:00
Location: KENYA
Contact:

Re: AdminLTE Plugin for AppGini

Post by rngoda » 2023-05-08 17:36

onoehring wrote:
2023-05-05 16:53
Hi Ronald,

I am just wondering: Is it possible to have the LTE UI for some usergroups only, but not for others?
Is it documented (where?) how I can achieve this - if it's possible?

Thanks
Olaf
Hello, this is currently not supported. But we could work to have it as a possible feature in future.
I'm a software engineer specializing in web database application development for complex scalable web apps.

Buy AdminLTE Plugin For Appgini: HERE
Buy Cloud Storage Plugin For Appgini HERE

Checkout AdminLTE Plugin For Appgini Tutorials On Youtube

For support Email: [email protected] Whatsappp: Me Here

User avatar
Marcelo Vitoria
Veteran Member
Posts: 60
Joined: 2016-10-11 12:08

Re: AdminLTE Plugin for AppGini

Post by Marcelo Vitoria » 2023-05-12 20:43

Hi Ronald

Could you please post the AdminLTE trial version link for AppGini Trial? Because I believe that this version that is in your messages must not be the same, because I download the AdminLTE-3.2.0 version and simply the file to be used to translate the interface simply does not exist.
I need to translate into Brazilian Portuguese in order to take the tests.

Thanks
Marcelo Vitoria
Coding since 1984 Basic Sinclair!
Clipper Summer´87 - Visual Foxpro - VB6 - PHP
AppGini 24.11 - AdminLTE
https://www.workspaceservices.com.br

brudy
Veteran Member
Posts: 38
Joined: 2023-02-04 11:35

Re: AdminLTE Plugin for AppGini

Post by brudy » 2023-05-13 12:17

Hi,

I think there is a problem with the calendar and the everyYear option, this option does not work

Rudy

brudy
Veteran Member
Posts: 38
Joined: 2023-02-04 11:35

Re: AdminLTE Plugin for AppGini

Post by brudy » 2023-05-13 15:27

Well, after some tests, if I set everyYear to false or true, no change, if I set everyYear to None, it disappears but then we lose the little colored dots when there is a date overlay.

The "range" option does not work.

User avatar
rngoda
Veteran Member
Posts: 124
Joined: 2020-02-05 16:00
Location: KENYA
Contact:

Re: AdminLTE Plugin for AppGini

Post by rngoda » 2023-05-14 18:44

brudy wrote:
2023-05-13 15:27
Well, after some tests, if I set everyYear to false or true, no change, if I set everyYear to None, it disappears but then we lose the little colored dots when there is a date overlay.

The "range" option does not work.
Hello, kindly share your calendar code widget I have a quick look.
I'm a software engineer specializing in web database application development for complex scalable web apps.

Buy AdminLTE Plugin For Appgini: HERE
Buy Cloud Storage Plugin For Appgini HERE

Checkout AdminLTE Plugin For Appgini Tutorials On Youtube

For support Email: [email protected] Whatsappp: Me Here

User avatar
rngoda
Veteran Member
Posts: 124
Joined: 2020-02-05 16:00
Location: KENYA
Contact:

Re: AdminLTE Plugin for AppGini

Post by rngoda » 2023-05-14 18:46

Marcelo Vitoria wrote:
2023-05-12 20:43
Hi Ronald

Could you please post the AdminLTE trial version link for AppGini Trial? Because I believe that this version that is in your messages must not be the same, because I download the AdminLTE-3.2.0 version and simply the file to be used to translate the interface simply does not exist.
I need to translate into Brazilian Portuguese in order to take the tests.

Thanks
Hi, find the link to trial version here https://github.com/ronniengoda/appginilte
I'm a software engineer specializing in web database application development for complex scalable web apps.

Buy AdminLTE Plugin For Appgini: HERE
Buy Cloud Storage Plugin For Appgini HERE

Checkout AdminLTE Plugin For Appgini Tutorials On Youtube

For support Email: [email protected] Whatsappp: Me Here

brudy
Veteran Member
Posts: 38
Joined: 2023-02-04 11:35

Re: AdminLTE Plugin for AppGini

Post by brudy » 2023-05-14 18:49

rngoda wrote:
2023-05-14 18:44
brudy wrote:
2023-05-13 15:27
Well, after some tests, if I set everyYear to false or true, no change, if I set everyYear to None, it disappears but then we lose the little colored dots when there is a date overlay.

The "range" option does not work.
Hello, kindly share your calendar code widget I have a quick look.
Hi,
I use the basic widget code provided in the example

Thanks

ps: It's not urgent I'm on vacation until mid June

Rudy

Code: Select all


				<?php
echo showCalendar('Test calendrier',
    "SELECT * FROM calendar","dark",
    "col-md-12","Yes","No",[
    'theme'=>'Midnight Blue',
    'todayHighlight'=>true,
    'format'=>'MM dd, yyyy',
    'titleFormat'=>'MM yyyy',
    'eventHeaderFormat'=>'MM dd',
    'firstDayOfWeek'=>1,
    'sidebarDisplayDefault'=>true,
    'sidebarToggler'=>true,
    'eventDisplayDefault'=>true,
    'eventListToggler'=>true,
    ],
    '//Construct the URL with the eventID variable
    const url = `appginilte_view.php?page=orders_view.php?SelectedID=${eventID}`;
    // Create a new anchor element with the constructed URL
    const anchor = document.createElement("a");
    anchor.href = url;
    //Simulate a mouse click on the anchor element
    const mevent = new MouseEvent("click");
    anchor.dispatchEvent(mevent);');

?>

User avatar
rngoda
Veteran Member
Posts: 124
Joined: 2020-02-05 16:00
Location: KENYA
Contact:

Re: AdminLTE Plugin for AppGini

Post by rngoda » 2023-05-14 19:29

Marcelo Vitoria wrote:
2023-05-12 20:43
Hi Ronald

Could you please post the AdminLTE trial version link for AppGini Trial? Because I believe that this version that is in your messages must not be the same, because I download the AdminLTE-3.2.0 version and simply the file to be used to translate the interface simply does not exist.
I need to translate into Brazilian Portuguese in order to take the tests.

Thanks
Kindly download version 23.04.24 from https://app.gumroad.com/
I'm a software engineer specializing in web database application development for complex scalable web apps.

Buy AdminLTE Plugin For Appgini: HERE
Buy Cloud Storage Plugin For Appgini HERE

Checkout AdminLTE Plugin For Appgini Tutorials On Youtube

For support Email: [email protected] Whatsappp: Me Here

User avatar
rngoda
Veteran Member
Posts: 124
Joined: 2020-02-05 16:00
Location: KENYA
Contact:

Re: AdminLTE Plugin for AppGini

Post by rngoda » 2023-05-15 07:59

brudy wrote:
2023-05-14 18:49
rngoda wrote:
2023-05-14 18:44
brudy wrote:
2023-05-13 15:27
Well, after some tests, if I set everyYear to false or true, no change, if I set everyYear to None, it disappears but then we lose the little colored dots when there is a date overlay.

The "range" option does not work.
Hello, kindly share your calendar code widget I have a quick look.
Hi,
I use the basic widget code provided in the example

Thanks

ps: It's not urgent I'm on vacation until mid June

Rudy

Code: Select all


				<?php
echo showCalendar('Test calendrier',
    "SELECT * FROM calendar","dark",
    "col-md-12","Yes","No",[
    'theme'=>'Midnight Blue',
    'todayHighlight'=>true,
    'format'=>'MM dd, yyyy',
    'titleFormat'=>'MM yyyy',
    'eventHeaderFormat'=>'MM dd',
    'firstDayOfWeek'=>1,
    'sidebarDisplayDefault'=>true,
    'sidebarToggler'=>true,
    'eventDisplayDefault'=>true,
    'eventListToggler'=>true,
    ],
    '//Construct the URL with the eventID variable
    const url = `appginilte_view.php?page=orders_view.php?SelectedID=${eventID}`;
    // Create a new anchor element with the constructed URL
    const anchor = document.createElement("a");
    anchor.href = url;
    //Simulate a mouse click on the anchor element
    const mevent = new MouseEvent("click");
    anchor.dispatchEvent(mevent);');

?>
Just noticed on your calendar query you just did SELECT * which should not be the case, you need to select specific fields and give them aliases as specified in the documentation section for calendar query structure here https://portals.docsie.io/ronthedev/ron ... hree-7b5i9
I'm a software engineer specializing in web database application development for complex scalable web apps.

Buy AdminLTE Plugin For Appgini: HERE
Buy Cloud Storage Plugin For Appgini HERE

Checkout AdminLTE Plugin For Appgini Tutorials On Youtube

For support Email: [email protected] Whatsappp: Me Here

brudy
Veteran Member
Posts: 38
Joined: 2023-02-04 11:35

Re: AdminLTE Plugin for AppGini

Post by brudy » 2023-05-15 08:17

Hi,

here is my DB, I still have to detail all the fields in the select query?

Rudy

Image

User avatar
rngoda
Veteran Member
Posts: 124
Joined: 2020-02-05 16:00
Location: KENYA
Contact:

Re: AdminLTE Plugin for AppGini

Post by rngoda » 2023-05-16 07:53

brudy wrote:
2023-05-15 08:17
Hi,

here is my DB, I still have to detail all the fields in the select query?

Rudy

Image
This is perfect, kindly share a snap of sample data stored on the table to counter check if it is correct.
I'm a software engineer specializing in web database application development for complex scalable web apps.

Buy AdminLTE Plugin For Appgini: HERE
Buy Cloud Storage Plugin For Appgini HERE

Checkout AdminLTE Plugin For Appgini Tutorials On Youtube

For support Email: [email protected] Whatsappp: Me Here

brudy
Veteran Member
Posts: 38
Joined: 2023-02-04 11:35

Re: AdminLTE Plugin for AppGini

Post by brudy » 2023-05-16 09:59

Image
Image

User avatar
Marcelo Vitoria
Veteran Member
Posts: 60
Joined: 2016-10-11 12:08

Re: AdminLTE Plugin for AppGini

Post by Marcelo Vitoria » 2023-05-19 22:15

rngoda wrote:
2023-05-14 19:29
Marcelo Vitoria wrote:
2023-05-12 20:43
Hi Ronald

Could you please post the AdminLTE trial version link for AppGini Trial? Because I believe that this version that is in your messages must not be the same, because I download the AdminLTE-3.2.0 version and simply the file to be used to translate the interface simply does not exist.
I need to translate into Brazilian Portuguese in order to take the tests.

Thanks
Kindly download version 23.04.24 from https://app.gumroad.com/
Sorry friend, I logged into this site but there is no link to download the template.
If you can make it available on a Virtual Drive or even through WETRANFER (https://wetransfer.com/) it would be much less confusing.

I really need to know if the screen translation works perfectly for Brazilian Portuguese in order to purchase the PRO version.

I'm waiting for your reply and thank you
Marcelo Vitoria
Coding since 1984 Basic Sinclair!
Clipper Summer´87 - Visual Foxpro - VB6 - PHP
AppGini 24.11 - AdminLTE
https://www.workspaceservices.com.br

User avatar
rngoda
Veteran Member
Posts: 124
Joined: 2020-02-05 16:00
Location: KENYA
Contact:

Re: AdminLTE Plugin for AppGini

Post by rngoda » 2023-05-21 19:15

Marcelo Vitoria wrote:
2023-05-19 22:15
rngoda wrote:
2023-05-14 19:29
Marcelo Vitoria wrote:
2023-05-12 20:43
Hi Ronald

Could you please post the AdminLTE trial version link for AppGini Trial? Because I believe that this version that is in your messages must not be the same, because I download the AdminLTE-3.2.0 version and simply the file to be used to translate the interface simply does not exist.
I need to translate into Brazilian Portuguese in order to take the tests.

Thanks
Kindly download version 23.04.24 from https://app.gumroad.com/
Sorry friend, I logged into this site but there is no link to download the template.
If you can make it available on a Virtual Drive or even through WETRANFER (https://wetransfer.com/) it would be much less confusing.

I really need to know if the screen translation works perfectly for Brazilian Portuguese in order to purchase the PRO version.

I'm waiting for your reply and thank you
Hello, the demo version does not have translation feature supported. But in the pro version we have functional translation you can translate to any language of your choice. We even have a visual interface to assist you in the translation without touching code :https://portals.docsie.io/ronthedev/ron ... -two-2h14r Feel free to try out the pro version.
I'm a software engineer specializing in web database application development for complex scalable web apps.

Buy AdminLTE Plugin For Appgini: HERE
Buy Cloud Storage Plugin For Appgini HERE

Checkout AdminLTE Plugin For Appgini Tutorials On Youtube

For support Email: [email protected] Whatsappp: Me Here

User avatar
rngoda
Veteran Member
Posts: 124
Joined: 2020-02-05 16:00
Location: KENYA
Contact:

Re: AdminLTE Plugin for AppGini

Post by rngoda » 2023-05-21 19:17

AdminLTE for Appgini Release Notes

Version 23.05.21 | Release Date: 21st May 2023

We are excited to announce the release of AdminLTE for Appgini 23.05.21 This release brings several new features, improvements, and bug fixes to enhance your application management experience. Read on to explore the changes introduced in this version.

New Features:

- Options: Introducing a new way to store all your application settings and other data directly in the database, eliminating the need for JSON files. With the new Options feature, you can create, store, retrieve, and delete custom options using three functions:

- set_option(option_name, value): Sets the value of a specific option.

- get_option(option_name): Retrieves the value of a specific option.

- delete_option(option_name): Deletes a specific option from the database.

Improvements:

- Admin Alert for Important Updates: Now, when you download the update files for your application, you will receive an alert as an admin. This notification will inform you about any critical updates that accompany the new release, ensuring you stay informed about important changes.

Bug Fixes:

- Fixed Custom Table Groups: Previously, custom table groups would appear even when they had no associated menu items. In this release, we have addressed this issue, and now custom table groups will only be displayed to users if they contain menu items. This improvement ensures a more streamlined and intuitive user experience.

Reports Builder Enhancements:

- Label Field Alias: We have added two new options to the Reports Builder. Now, you can specify your own names for the field alias and summary column title. This customization capability allows you to tailor the reports according to your preferences and make them more meaningful and descriptive.

We hope these new features, improvements, and bug fixes enhance your experience with AdminLTE for Appgini. If you have any questions, suggestions, or encounter any issues, please don't hesitate to reach out to our support team.

Thank you for choosing AdminLTE for Appgini!

Note: Make sure to review the updated documentation for detailed information on how to utilize the new features introduced in this release.
I'm a software engineer specializing in web database application development for complex scalable web apps.

Buy AdminLTE Plugin For Appgini: HERE
Buy Cloud Storage Plugin For Appgini HERE

Checkout AdminLTE Plugin For Appgini Tutorials On Youtube

For support Email: [email protected] Whatsappp: Me Here

User avatar
crnjak
Veteran Member
Posts: 37
Joined: 2021-12-29 20:25

Re: AdminLTE Plugin for AppGini

Post by crnjak » 2023-05-22 17:35

I have problem with this version. After installing there is no chance to create custom page or report also many things dont work, like is read only no changes saved and show on dashboard.

User avatar
rngoda
Veteran Member
Posts: 124
Joined: 2020-02-05 16:00
Location: KENYA
Contact:

Re: AdminLTE Plugin for AppGini

Post by rngoda » 2023-05-23 14:21

HOT FIXES UPDATE
We are pleased to announce the release of AdminLTE for Appgini version 23.05.23. This update brings important bug fixes and new features to improve the functionality and customization options of your application. Take a look at the changes introduced in this version:

Bug Fixes:

- Fixed App Settings Bug: In the previous version, an issue occurred where the App Settings options were not being applied correctly, despite being saved. We have resolved this bug, and now all App Settings functions correctly. Your saved settings will now be accurately applied, ensuring a seamless experience.

Enhancements:

- Auto Refresh After Saving App Settings: To streamline the configuration process, we have implemented an auto-refresh functionality. Now, when you save any changes to the App Settings, the page will automatically refresh, ensuring that the new settings take effect immediately. This enhancement saves you time and eliminates the need for manual page refreshes.

New Feature:

- JSON_UNESCAPED_UNICODE Option: We have introduced a new option, JSON_UNESCAPED_UNICODE, to the App Settings. This feature allows for the storage of language-specific characters without any loss of information or incorrect encoding. By enabling this option, you can ensure that special characters are accurately saved and displayed within your application.

We believe that these bug fixes and new features will greatly enhance your experience with AdminLTE for Appgini. Should you encounter any issues or have any questions, please reach out to our support team for assistance.

Thank you for choosing AdminLTE for Appgini!

Note: Make sure to review the updated documentation for detailed information on how to utilize the fixed features and new options introduced in this release.
I'm a software engineer specializing in web database application development for complex scalable web apps.

Buy AdminLTE Plugin For Appgini: HERE
Buy Cloud Storage Plugin For Appgini HERE

Checkout AdminLTE Plugin For Appgini Tutorials On Youtube

For support Email: [email protected] Whatsappp: Me Here

User avatar
rngoda
Veteran Member
Posts: 124
Joined: 2020-02-05 16:00
Location: KENYA
Contact:

Re: AdminLTE Plugin for AppGini

Post by rngoda » 2023-05-23 14:22

crnjak wrote:
2023-05-22 17:35
I have problem with this version. After installing there is no chance to create custom page or report also many things dont work, like is read only no changes saved and show on dashboard.
We have released an update to fix most of the bugs addressed by users regarding the app settings area. For the custom pages and reports I can confirm you can create them
I'm a software engineer specializing in web database application development for complex scalable web apps.

Buy AdminLTE Plugin For Appgini: HERE
Buy Cloud Storage Plugin For Appgini HERE

Checkout AdminLTE Plugin For Appgini Tutorials On Youtube

For support Email: [email protected] Whatsappp: Me Here

User avatar
crnjak
Veteran Member
Posts: 37
Joined: 2021-12-29 20:25

Re: AdminLTE Plugin for AppGini

Post by crnjak » 2023-05-23 15:19

I update now can edit look in dashboard but still cant view on dashboard custom page and tableview. I can create them but in dashboard there is not exist.

User avatar
rngoda
Veteran Member
Posts: 124
Joined: 2020-02-05 16:00
Location: KENYA
Contact:

Re: AdminLTE Plugin for AppGini

Post by rngoda » 2023-05-24 13:06

crnjak wrote:
2023-05-23 15:19
I update now can edit look in dashboard but still cant view on dashboard custom page and tableview. I can create them but in dashboard there is not exist.
Try go to app settings under general settings tab and enable custom pages.
I'm a software engineer specializing in web database application development for complex scalable web apps.

Buy AdminLTE Plugin For Appgini: HERE
Buy Cloud Storage Plugin For Appgini HERE

Checkout AdminLTE Plugin For Appgini Tutorials On Youtube

For support Email: [email protected] Whatsappp: Me Here

User avatar
crnjak
Veteran Member
Posts: 37
Joined: 2021-12-29 20:25

Re: AdminLTE Plugin for AppGini

Post by crnjak » 2023-05-24 14:10

I was enabled custom pages before I created pages and tables...

User avatar
rngoda
Veteran Member
Posts: 124
Joined: 2020-02-05 16:00
Location: KENYA
Contact:

Re: AdminLTE Plugin for AppGini

Post by rngoda » 2023-05-24 18:27

crnjak wrote:
2023-05-24 14:10
I was enabled custom pages before I created pages and tables...
So the issue is that you cannot see your custom pages ?
I'm a software engineer specializing in web database application development for complex scalable web apps.

Buy AdminLTE Plugin For Appgini: HERE
Buy Cloud Storage Plugin For Appgini HERE

Checkout AdminLTE Plugin For Appgini Tutorials On Youtube

For support Email: [email protected] Whatsappp: Me Here

User avatar
crnjak
Veteran Member
Posts: 37
Joined: 2021-12-29 20:25

Re: AdminLTE Plugin for AppGini

Post by crnjak » 2023-05-25 11:44

yes

User avatar
Marcelo Vitoria
Veteran Member
Posts: 60
Joined: 2016-10-11 12:08

Re: AdminLTE Plugin for AppGini

Post by Marcelo Vitoria » 2023-09-02 21:29

We purchased the Plugin a few days ago and we have just translated the interface into Brazilian Portuguese and we are very happy with the result. The presentation of the APP is much better, with many new features that we are still exploring, but quite satisfied with the result, for those who have doubts, they can use it without fear in their projects, which is very worthwhile.

Image

Happy Coding!
Marcelo Vitoria
Coding since 1984 Basic Sinclair!
Clipper Summer´87 - Visual Foxpro - VB6 - PHP
AppGini 24.11 - AdminLTE
https://www.workspaceservices.com.br

User avatar
rngoda
Veteran Member
Posts: 124
Joined: 2020-02-05 16:00
Location: KENYA
Contact:

Re: AdminLTE Plugin for AppGini

Post by rngoda » 2023-09-03 15:02

Marcelo Vitoria wrote:
2023-09-02 21:29
We purchased the Plugin a few days ago and we have just translated the interface into Brazilian Portuguese and we are very happy with the result. The presentation of the APP is much better, with many new features that we are still exploring, but quite satisfied with the result, for those who have doubts, they can use it without fear in their projects, which is very worthwhile.

Image

Happy Coding!
I am glad that you are satisfied with the plugin and that it helps you enhance your application performance and appearance. More updates coming soon!
I'm a software engineer specializing in web database application development for complex scalable web apps.

Buy AdminLTE Plugin For Appgini: HERE
Buy Cloud Storage Plugin For Appgini HERE

Checkout AdminLTE Plugin For Appgini Tutorials On Youtube

For support Email: [email protected] Whatsappp: Me Here

Post Reply