Discussion on DashLite - Bootstrap Responsive Admin Dashboard Template

Discussion on DashLite - Bootstrap Responsive Admin Dashboard Template

By
Cart 3,711 sales
Well Documented

softnio supports this item

Supported

This author's response time can be up to 1 business day.

769 comments found.

Hello can i refund money because this one can’t to link for my hosting directly i think this is directly linked template

Well, if you have not download yet then you can simply asking for refund but if you already downloaded then we can not accept your refund request as per refund policy.

Also we are really not sure what you mean by directly linked but if you host this template into your hosting then it will show as our demo but without any functional as this is a non-functional static html template.

Thank you

Hello ! Thank you for reading this i had already purchased web template but i cant understand how to setup. if you have any tutorial for that. Host in – Hostinger Cpanel in Hostinger

Thanks for your comment.

Well, this is static html template so there is nothing to setup direct into hosting. You actually need to make it functional as per your requirement then you can host into hosting server. So you may need a good programmer to make functional.

Thank you

There’s a minor bug when using the Google-style input fields. When you click on the field the label moves above the input for text input, but when you dynamically load values into the fields on page load the label covers the value. Clicking on the input makes the label move above, but this should be corrected so when the input has a value that the label moves above with clicking on the input.

See this video for example. https://youtu.be/Ldt7MZDOSB0

Thanks for letting us know.

Well, when you make it functional and populate with value so that can show after loading page then you must add ‘focused’ class with ‘form-control-wrap’ class then it will works as you expect.

Thank you

Great, that works perfectly. Thank you! Really impressed with your service and fantastic theme.

You most welcome!

I bought the investorm theme and coming now to find out it’s been removed from the market. Please how do i get the Updated version of Investorm?

Well, our application is not available for sale on marketplace. But our team continuously provides support & updates to our existing customers until active support term via support center – https://support.softnio.com/

Thank you

Hi, what was the changes for the January update? Change Log in description only showing up until 22 Nov, 2022.

Well, you can check our changes log from website – https://docs.dashlite.net/html/changelogs.html

Thank you

Hello Dashlite. I purchased your theme. One of the very cool theme in forest. but, your currrent dashlite.css on your website (https://dashlite.net) is not match the downloaded one (themeforest theme files).

Could you please update themeforest theme files with the demo theme on https://dashlite.net/

Because, I could not implement theme switcher. because there is no .nk-sticky-toolbar css settings for it even if css versions is same.

Best.

Thanks for your comment.

Well, the Demo version and uploaded version is the same. If we understand well then the part you are referring to is not part of the template as the right sticky panel only for preview purpose that never included into main template and it only use to show our demo pages quickly.

Thank you very much for understanding.

- What version of React does this use? – Would it be difficult to update to the latest, evantually? - Does this use Typescript? - Does this use externally loaded recources, i need to know in order to use it in an off-line facilitys premiises

Thanks for asking.

Sorry but this is not React template, you should check this one – https://themeforest.net/item/dashlite-react-admin-dashboard-template/34797909

Thank you

I am trying so much to understand how to use this dashboard template on a crypto website, I don’t know how to go about it

Thanks for your comment.

Well, this is a static html template so if you are a programmer then you need to make it functional on your way or if you are not then you need hire a programmer to make it function based on your requirement before actual use.

Thank you

Quick question… how do I reduce the height of the Chat/Messenger window? I was not able to locate it in the JS files. I assume there is a fixed number of pixels somewhere in a js or css file?

Thanks for your query.

Can you please let us know which demo layout you talking about?

Thank you

I am referring to Demo 5.

Plan is to display it in a popup modal but need to make it shorter.

Well, in demo5 you can not reduce height anymore as its already compacted but if you to change more height then you need to change height manually for each block from css.

Also the chat related css code found in /scss/apps folder and header related code found in scss/core/layouts folder.

Thank you

Hi, Wonder if it is possible to install the DashLite on my Synology NAS? Or on a windows-server? Or is it linux only? I need some help to get started in my goal in making a back+frontend to handle my subscribers… :-) Mads

Well, the Node.js you need to install into your computer so you can edit the template. Basically the Node.js is required to editing the template as there is gulp, scss and vendor js source which is depends on Node.js.

Also as mentioned before that there is nothing about installation that related to server or making live. The documentation command line process just about help you develop and edit on your own.

As you have lack of development procedure so it would be better if you hire a programmer, describe your functional requirement and he can build the real functional application.

Thank you

Hi, well I was to quick to thank you for the patience… But thanks for your answers anyway. Happy new year to you!

You most welcome!

Happy new year too.

Hi,

How to have 2 differents dropzone ? something like :

NioApp.Dropzone.init = function () {
  NioApp.Dropzone('.upload-zone1', {
    url: "/url1" 
  });
};
NioApp.Dropzone.init = function () {
  NioApp.Dropzone('.upload-zone2', {
    url: "/url2" 
  });
};

and how to add a listener event on this ? like this.on(‘complete’, function () { console.log(‘upload complete’); location.reload(); });

Thank you

Thanks for your query.

First of all, your support term is expired so you should renew to get continues support from our team.

To initialized to Dropzone you can write like this –
NioApp.Dropzone.init = function () {
    NioApp.Dropzone('.upload-zone1', {
       url: "/url1" 
    });

    NioApp.Dropzone('.upload-zone2', {
       url: "/url2" 
    });
};

But if you want add listener then code will completely different as below -

NioApp.Dropzone.init = function () {
    var dropzone1 = $(this).addClass('dropzone').dropzone({
               autoDiscover: false, maxFiles: 2, maxFilesize: 500, acceptedFiles: 'png'
    });

    dropzone1.on('complete', file => { console.log('complete'); });

// 

    var dropzone2 = $(this).addClass('dropzone').dropzone({
               autoDiscover: false, maxFiles: 2, maxFilesize: 500, acceptedFiles: 'png'
    });

    dropzone1.on('complete', file => { console.log('complete'); });
};

Thank you

Hi, How to align-right a datatable col ? Thank you, you are the best

Well, if you using latest version then can you please try with text-end (as per BS5).

Thank you

Good, that’s work ! thank you !

Glad to hear that.

You should renew your support to get continues support from our team. Also do not forgot to give a good rating to our template.

Thank you

i am having issues importing template to my wordpress site

Thanks for asking.

Well, this is a static html template so you can NOT directly use or import into WordPress website. As html template so you need to make it functional on your own way and then you can use.

Thank you

Hello ! Thank you for this awesome template. But it seems that Select2 is not working properly. When I try to listen the ‘change’ event, it doesn’t trigger the event as expected.

Thank you

Thanks for asking.

Please have a look at official docs for on change event here – https://select2.org/programmatic-control/events#limiting-the-scope-of-the-change-event

Code example –
    $('#element').on('change.select2', function (e) {
        // Do something
    });

Thank you

hello sir

im using your dashlite-v3.1.1 template in my inertia.js with laravel 9 with vue 3, im facing assets/js files not working for tables, charts and all other js too help me to fix thank you

Thanks for contacting us.

Well, we do not have any working experience with inertia.js so we can not say exactly what is the issue. But can you please provide us your console log error.

Also how do you add assets/js into your project? If you try use as import then we think it will be better if you link instead of import.

Thank you

Thanks for letting us know.

Our team will check this out and get back to you. Also did you try this in other demo we mean in demo2 or demo2 layout or it just happen in demo 7?

Thank you

Hopefully we will fix this in our next update.

Do not forgot to renew your support term to get continuous support from our team.

Thank you very much.

Hello, using the dashlite template on the calendar makes a popover for the event, but when i drag said element, it stays and that way the screen fills with elements that don’t dissappear. It’s an implementation problem.

Sorry to hear from you.

Can you please provide us your example code that you have tried and screenshot of issue so we can better and help you.

Please do not forget to renew your support term to continues support.

Thank you

Dear Team, I have that this them has one issue where the default assets/js/bundle.js file is around 950kb which causing the issue for mobile load or user with low speed internet. Kindly can u please advise if you have a compressor minimum bundle.js file so that we can improve the website speed. Currently this is only drawback all other stuff very helpful.

Thanks for your comment.

Well, we understand your but the js/css files are already compressed and minified and you can not compressed more. So if you face slow issue in mobile or with low speed internet then you must need to go with VPS/Dedicate server for faster response and as well as enable cache system from server end.

Thank you

Hi, morning, My name is Marcos and I have a dashlite template. How can I solve the following issue. I need to have both data-bs-toggle=”tooltip” data-bs-toggle=”modal” at the same ; If I put they together don´t work. If I put separeted the toottip don´t work well. How can I solve this porblem ? My email is mgavilan@gmail.com thanks in advance.

Well, in BS5 you can not you use multiple -bs-toggle at the same element. You should use in in one main element another sub-element as bellow -

<span class="d-inline-block" tabindex="0" data-bs-toggle="tooltip" data-bs-title="Tooltip text">
  <button class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#modal">Button Text</button>
</span>

in script.js, there are bugs:

$doc.on(‘mouseup’, function (e) {

$s2c = $(’.select2-container’), $s2c.has(e.target).length === 0

this is not working correctly, please help update next version, my suggestion:

$(e.target).closest(”.select2-container”).length === 0

Thanks for letting us know.

Can you please let us know where exactly it does not work so we can check that too.

Thank you

the toggle will close automatically when select a option from select2 component in the toggle

Thanks for letting us know to improve our template. We will check and fixed in our upcoming update.

Also do not forgot to renew your support terms to get continues support from team.

Thank you very much.

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