Discussion on AdminUX | Admin UI UX Multipurpose Dashboard Bootstrap 5 template and Angular 19 React Starter

Discussion on AdminUX | Admin UI UX Multipurpose Dashboard Bootstrap 5 template and Angular 19 React Starter

Cart 528 sales
Recently Updated
Well Documented

AdminUIUX-Templates supports this item

Supported

This author's response time can be up to 2 business days.

87 comments found.

I just bought the template but I can not find the project starter Angular 4. Could you help me?

When you will update? We bought the template because then change log says

”+ 17 November 17

[Updated] _ bootstrap 4 beta offset updates [Added] _Angular 4 Starter project with bootstrap 4 beta ” Where es Angular 4 Starter Project? Could you send me?

Could you please get latest download. Thank you!

ok. Thanks!

Please, if you can help me a little. In my company they have just bought this template, which says that it comes with an angular 4 start project. Where is this project? The documentation does not say anything about it.

Thank you :)

Okay, Thanks for info will update for the same. Once item file approved

Hi, can you fix sign-up4.html,reset_password2.html, form_donation.html, contactus.html,forms.html and etc? https://c2n.me/3V9EroZ

Okay. Will update in few days.

Thanks you…

Hello The purchased theme has been moved to the asp.net environment and backend codes are being made. The problem with this is that when the Ajax updatepanel is used, javascript code conflicts exist and the ajax structure does not respond.

Hello Sedighisaeed,

Sorry for that but we don’t have integration idea about asp.net. You can also try with your own js code which work with ajax update panel.

Regards, Max

hi,

great Theme! Thanks for the Landing Page Templates too.

Can you offer a PSD for the Mockup screen-right.png used in landingpage2.html ?

Thanks and nice greetings from the sunny mountains

Hello , Sorry for that,i t just image want come with psd file.

Regards, Max

The company I work for bought the template few days ago and now I try to integrate it in our project. I started with the angularproject folder. But the thing is, it has differences with the built in theme in Adminux folder. One difference is the Customize button. In the Angular project, the button doesn’t work at all. Why is that so? Can you publish the latest code and the steps you take to build the project? Thanks.

mrtndimitrov,

We have used jquery and cookie settings for theme setting customization which us available in HTML. Angular 4 project we haven’t added jquery theme customizer, please refer angular demo.

Regards, Max

Hi,

Great theme, but it seems it doesnt show in the same resolution in safari and chrome on macOS retina screen. It seems chrome consider the screen being 720p with that theme.

Can you tell us where are located the media queries for the left sidebar which close when below screen resolution is below 1080p, as another user requested it ?

I couldn’t find where is located the style.

You didn’t say it above except “some media queries”. But the Adminux css file alone is 8000 lines.

Your help you’d be greatly appreciated.

Hello,

There is script in adminux.js on load comment added at line 210: /* Resposnsive Utility hide menu */ Change your resolution to 1024 or any other stop auto hide menu.

This will show a menu but in overlay mode will not push content. To make it push content go to css and check media query:

@media screen and (max-width: 1400px) { and remove—> .wrapper-content { margin: 0 auto; }

Hope this helps.

There is some limitation paste code over here in comment box so mostly we ask to drop message from our profile page. So we can reply via mail.

Regards, Max

Does the Angular Version Support RTL? Please let me know, I need to buy this theme accordingly.

There is one menu item in preview angular demo. Layout > RTL

Check it out about supports content.

Thank you., max

Hi…i wanna to ask…do u have proper manual installation or video tutorial with angular template?i keep getting a lots of error..during installing dependency.ty

In the folder all files available with modules as well. So direct you can run with ng serve. Howerver Node js version 8.8 1 and npm 5.4.2 and it works fine.

Regards, Max

Any plan of upgrading to JQuery 3x?

Any specific components that is keeping the theme from being updated? I like the theme but I’m using jquery 3 and just need the basic layout of the theme.

Just for basic structure and default components jquery 3 should work with bootstrap .

Regards, Max

Hi, any plan to upgrade this theme to support bootstrap 4 official release?

Yes we have in plan in upcoming months with other latest also

Hi Support, i want to use horizontal menu and fix color for my template. how can i do that

Hello! You can use horizontal-menu class at body and for color you can use css files as suggested in document. Also if any specific color scheme required please drop a message from our profile page. https://themeforest.net/user/maxartkiller

Thank you! Max

Hi! I’ve purchased this template from you before you added Angular 4 support. Here’s my question: Is the new Angular 4 template written with TypeScript or JavaScript?

Hello, ng Template is starter UI kit and HTML content added within page. few third parties are of js.

Hope this helps. Regards, Max

I could not fully understand what you meant. I understand that this is an ng template written with HTML. But what are the back end files?

Ngurlar project starter kit.. is not binded with any of database .. it’s a starter kit angular project structure. Few of of plugins are of jquery it requires it are not available in pure angular …

Hope this clears. Regards, Max

Hi,

Does this template include i18n internationlization support?

Thanks.

Hello Circle8,

However this is HTML CSS template .. we have kept most of the text without truncate so it can be two three lines while internationalization… You can use and modify as your need also truncate if required as for specific.

Hope this helps.

Regards, Max

Hi Max, this template is very beautiful and great, I love this template, and now I’m using it in my project. I want to ask you, would you like to guide me to change the left sidebar menu always open or sticky ?? The left sidebar is open and sticky when I zoom out the screen, and I want this too on normal screen.

Sorry for my poor English. Thanks

Hello amaliazakiyah,

There is in script on toggle class “menuclose” is used need to remove that and also few related css change… Please drop a message from our profile page, I will share CSS changes needs to be apply.

Thanks, Max

Hello I wonder if you can help me, I made the purchase of the template and am trying to populate the autocomplete through ajax

var options;

$.ajax({ url: ‘Busca_Pt’, dataType: ‘json’, success: function (result) {

jQuery.each(result, function (i, val) { options= { data: [ { “name”: “Norman Cherry”, “email”: “massa@Nullasemper.co.uk”, “icon”: ”../img/team.png” } ], getValue: “name”, template: { type: “description”, fields: { description: “email” } }, } list: { match: { enabled: true } }, }); }, error: function (ex) { } });

$(”#example-mail”).easyAutocomplete(options);

$(window).on(“resize”, function () { $(”#example-mail”).easyAutocomplete(options); });

But it is not working correctly

I’ve done tests and the data is returning, however it is not populate the autocomplete

var options_jogadores;

$.ajax({ url: ‘Busca_Pt’, dataType: ‘json’, success: function (result) {

jQuery.each(result, function (i, val) {
options_jogadores = {
        data: [
        {
            "name": "Norman Cherry",
            "email": "massa@Nullasemper.co.uk",
            "icon": "../img/team.png" 
        }
        ],
        getValue: "name",
template: {
        type: "description",
        fields: {
            description: "email" 
        }
    },
}
list: {
    match: {
        enabled: true
    }
},
});
},
error: function (ex) {
}

});

OK

I paid for the template, it was not for free.

The template points out several technical problems.

Just like the one I am describing, please send the answer or I will make a complaint directly with Envato

Hello,

Our demo page is working fine with auto complete.

If you wants more customization as per your need you have to customize it in proper way. So for ajax setting you can refer particular plugin option/setting : http://easyautocomplete.com/example/ajax-post

Regards, Max

Email me when this comment receives a reply

Olá Gostaria de saber se podem me ajudar, Fiz a compra do template e estou tentando populate o autocomplete atraves de ajax

var options;

$.ajax({ url: ‘Busca_Pt’, dataType: ‘json’, success: function (result) {

jQuery.each(result, function (i, val) {
options= {
        data: [
        {
            "name": "Norman Cherry",
            "email": "massa@Nullasemper.co.uk",
            "icon": "../img/team.png" 
        }
        ],
        getValue: "name",
template: {
        type: "description",
        fields: {
            description: "email" 
        }
    },
}
list: {
    match: {
        enabled: true
    }
},
});
},
error: function (ex) {
}

});

$(”#example-mail”).easyAutocomplete(options);

$(window).on(“resize”, function () { $(”#example-mail”).easyAutocomplete(options); });

Porém o mesmo não está funcionando corretamente

Já fiz testes e os dados estão retornando, porém não está populate o autocomplete

drop msg from our profile page

Hola antes de hacer la compra el programador con el que trabajo me consulta lo siguiente: Es un proyecto Angular2 nativo, o una mezcla de distintas cosas?

Hello, There is stater template for angular and third party plugins added. You can use controls as your needs. Also includes pure html pages if you want.

Thank you

hi max

What’s the difference between this version and the ‘adminUX Mobile’? Can I use this version to build a mobile/tablet apps?

Yes, In mobile We have customize structure. This also a responsive and major features for desktop available compare to Mobile version.

Bests, Max

Hi,

We are trying to get the datatables to work but the responsive functionality is not working. Resizing the tables causes issues. The demo datatable does not have these issues. Would you be able to solve this if we send you the code?

Example: https://imgur.com/a/en32A

Thanks,

Mike

hello, You just need to call data table function after data populated. Here data inserted after the function executed that might create issue. Hope this help

Bests, Max

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve ThemeForest.

Sure, take me to the survey