Hello, this is currently not supported. But we could work to have it as a possible feature in future.
AdminLTE Plugin for AppGini
Re: AdminLTE Plugin for AppGini
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
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
- Marcelo Vitoria
- Veteran Member
- Posts: 79
- Joined: 2016-10-11 12:08
Re: AdminLTE Plugin for AppGini
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
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 1982 !
Basic Sinclar - Clipper - Visual Foxpro - VB6 - PHP
AppGini 24.17 - AdminLTE - SPM
https://www.workspaceservices.com.br
Coding since 1982 !
Basic Sinclar - Clipper - Visual Foxpro - VB6 - PHP
AppGini 24.17 - AdminLTE - SPM
https://www.workspaceservices.com.br
Re: AdminLTE Plugin for AppGini
Hi,
I think there is a problem with the calendar and the everyYear option, this option does not work
Rudy
I think there is a problem with the calendar and the everyYear option, this option does not work
Rudy
Re: AdminLTE Plugin for AppGini
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.
The "range" option does not work.
Re: AdminLTE Plugin for AppGini
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
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
Re: AdminLTE Plugin for AppGini
Hi, find the link to trial version here https://github.com/ronniengoda/appginilteMarcelo Vitoria wrote: ↑2023-05-12 20:43Hi 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
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
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
Re: AdminLTE Plugin for AppGini
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);');
?>
Re: AdminLTE Plugin for AppGini
Kindly download version 23.04.24 from https://app.gumroad.com/Marcelo Vitoria wrote: ↑2023-05-12 20:43Hi 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
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
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
Re: AdminLTE Plugin for AppGini
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-7b5i9brudy wrote: ↑2023-05-14 18:49Hi,
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);'); ?>
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
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
Re: AdminLTE Plugin for AppGini
Hi,
here is my DB, I still have to detail all the fields in the select query?
Rudy
here is my DB, I still have to detail all the fields in the select query?
Rudy
Re: AdminLTE Plugin for AppGini
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
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
- Marcelo Vitoria
- Veteran Member
- Posts: 79
- Joined: 2016-10-11 12:08
Re: AdminLTE Plugin for AppGini
Sorry friend, I logged into this site but there is no link to download the template.rngoda wrote: ↑2023-05-14 19:29Kindly download version 23.04.24 from https://app.gumroad.com/Marcelo Vitoria wrote: ↑2023-05-12 20:43Hi 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
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 1982 !
Basic Sinclar - Clipper - Visual Foxpro - VB6 - PHP
AppGini 24.17 - AdminLTE - SPM
https://www.workspaceservices.com.br
Coding since 1982 !
Basic Sinclar - Clipper - Visual Foxpro - VB6 - PHP
AppGini 24.17 - AdminLTE - SPM
https://www.workspaceservices.com.br
Re: AdminLTE Plugin for AppGini
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.Marcelo Vitoria wrote: ↑2023-05-19 22:15Sorry friend, I logged into this site but there is no link to download the template.rngoda wrote: ↑2023-05-14 19:29Kindly download version 23.04.24 from https://app.gumroad.com/Marcelo Vitoria wrote: ↑2023-05-12 20:43Hi 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
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
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
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
Re: AdminLTE Plugin for AppGini
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.
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
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
Re: AdminLTE Plugin for AppGini
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.
Re: AdminLTE Plugin for AppGini
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.
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
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
Re: AdminLTE Plugin for AppGini
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
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
Re: AdminLTE Plugin for AppGini
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.
Re: AdminLTE Plugin for AppGini
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
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
Re: AdminLTE Plugin for AppGini
I was enabled custom pages before I created pages and tables...
Re: AdminLTE Plugin for AppGini
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
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
- Marcelo Vitoria
- Veteran Member
- Posts: 79
- Joined: 2016-10-11 12:08
Re: AdminLTE Plugin for AppGini
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.
Happy Coding!
Happy Coding!
Marcelo Vitoria
Coding since 1982 !
Basic Sinclar - Clipper - Visual Foxpro - VB6 - PHP
AppGini 24.17 - AdminLTE - SPM
https://www.workspaceservices.com.br
Coding since 1982 !
Basic Sinclar - Clipper - Visual Foxpro - VB6 - PHP
AppGini 24.17 - AdminLTE - SPM
https://www.workspaceservices.com.br
Re: AdminLTE Plugin for AppGini
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!Marcelo Vitoria wrote: ↑2023-09-02 21:29We 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.
Happy Coding!
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
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