447 comments found.
Hello and good day. Love the work you have done so far, on your template, really awesome, well that’s why i purchased it. So i need to use your template in my react app and i need assistance. Do i import the dependencies into my package.json and build from there, if so then how do i start working on the html files part, after running the install command. If not then please how do i integrate your template into my react application?. Thanks a Bunch
Hi siscorule
Honestly I never use react before, but I often use vuejs. I think the basic is same this template use some jquery plugins. You need to initiate those plugins after the components mounted.
You can check used plugins in /resources/js/.
Thanks a lot, i think i understand now. So i install the plugins dependencies, then import the js files in the resource folder, practically in main.js of vue, and that should do it right?.
Yes, something like that.. 
Thanks, i have gotten it to work. You awesome
You’re very welcome.. 
I need right-to-left support
Hi,
I am very sorry right-to-left is currently not available.. 
Just a quick one, is there any landing page one can use with this dashboard template ?
Kindly recommend any external landing page that doesn’t involve a lot of work before it fits with this one
Hi,
We don’t have any landing page shiped with this version, can you give an example of the landing page content you expect?
Maybe I can add it in the next version.
That’ll be awesome! Something just simple like an horizontal menu bar and some basic landing page components that’ll help give an intro
Something like https://bootstrapmade.com/demo/Bikin/ but way simpler
Nice one, I will add it in the next version.. 
Hello! Can you fix user favicon menu? When you are in mobile version it doesn’t works correctly You can check this problem on your demo
Hi,
Can you point’ out more clearly what is favicon menu? Is it the icon on browser tab bar? Or the icon on mobile menu?
Hello. This is very clean and cool template i ever seen. Is it possible to make sidebar is static? Without scrolling alongside with the body?
Hi,
Thank you.. 
I don’t think so, the sidebar is not designed to be scrollable because the rounded corner of the active menu.
Thanks for the fast response! When VueJS version will be published?
Maybe around 1-2 weeks.. 
Hi zarulizham,
I am very sorry for making you wait a long time for our release information of the Vuejs version of Midone Admin template, if you are still interested in the product, please check the following link to explore more!
https://themeforest.net/item/midone-vuejs-admin-dashboard-template/28123408Thank you.. 
is possibe to convert this template to work with wordpress
Hi,
Ya I think it’s possible. It’s just like common html template.
Hi, Is the moment.js is global in the new version, i tried to use it outside app.js , but its showing error “moment is not defined”. Is there any setting to do to get moment.js as global? Thanks in advance.
Hi,
You can set it from /js/bootstrap.js. Please replace with the following code. Don’t forget to re-compile the assets.
// Load plugins
import $ from 'jquery'
import helper from './helper'
import moment from 'moment'
// Set plugins globally
window.$ = window.jQuery = $
window.helper = helper
window.moment = moment
Thank you..
Your’e very welcome.. 
Hello!
How to delete spaces between elements?
I have a lot of not used white space when I’m using widgets and table on home page
But design is very cool!
Hi,
Can I see your code preview online?
Thank you.. 
Sorry, but I’m working on local machine Maybe I can share with you content part in html file?
That’s okay, please send me the file here muhammadrizki@left4code.com
I send you file and screenshot also to your email 
I have replied your email please check it.
I see, thank you so much!
Best support 
edit , and Delete , add new row not worked in live demo ? if i purchase this item should i implement this features and is this support RTL direction best regards
Hi,
We are only working on UI parts, so there’s no logical things on this item. You need to implement it your self.
No RTL support for this item.
hola me pueden ayudar, estoy tratando de usar el evento change en las selecciones pero no funcionan para mí cuando tienen la clase select2 w-full si la elimino funciona
Hi,
Sorry, can you write it in english?
hello can you help me i am trying to use event change in select but not work for me when they have class select2 w-full if i remove it it works
Hi,
Seems like it’s not because w-full class, its only common tailwind class to set to full width. Can you post your code?
$(”#test”).change(function() { alert(“change”); });
—-—-It works-—-—
—remove css select2—
$(”#test”).change(function() { alert(“change”); });
Its not because w-full class, the .select2 class already used to init select2 plugin by default. You can remove it at app.js if you want to use that class name and attach onchange event.
Hi, I believe you have an update for jquery global. I am using version 1 now, to update to the 1.1 what are the files i should replace? thanks in advance.
If i replace just app.js will these jQuery & plugins can be accessable globally?
Ya you can replace app.css & app.js from compiled directory.
Thank you
Much appreciated..
You’re very welcome, let me know if you found any issues while upgrading the template version.
yes, thank u 
Hello,
I need simple HTML template. currently seems like node package and install n diff way.
I need this template without webpack. Can you provide that version?
Hi,
Sorry there’s no non webpack version of this template. We don’t import plugins one by one with tag script anymore, it’s very old school and hard to maintain.
But I have replied your email the template with pre-installed node_modules/dependencies kindly check that email.
Hello is there an email i can contact the support?
Hi, I have started using your theme. In one page i have to call on change event of “select2” dropdown.It was not working when i added on the page. After i added jquery reference and select2 reference again only it started working. Whats the best way to work in these conditions?
Hi, what do you mean with added jQuery and select2 reference? Is it re-init the plugin?
I added again after app.js these below scripts
<script src="/lib/jquery/dist/jquery.min.js"></script>
<script src="/lib/select2/select2.min.js"></script>
<script type="text/javascript">
$(document).ready(function () {
$('#select2id').select2();
$('#select2id').on("select2:select", function (e) {
document.location.href = "/page?id=" + $(this).val();
});
});
</script>
then only select2 onchange event worked.
I see, this is because all plugins imported via webpack (which is I named it app.js) is scoped inside that configuration. So it doesn’t share any plugins or functions to the page.
What you can do is by using expose loader (I’ve never tried it yet) so jQuery and other plugins can be shared globally: https://webpack.js.org/loaders/expose-loader/Or write all of your js code inside /src/js/newFile.js and import it to app.js. I would recommend you doing this for some reasons:
- Your js code will be compiled and placed in one single file, good for cache.
- Your js code will be more clean and doesn’t spread on all pages, i recommend you to separate every page js code into one single file and then import it to app.js.
ok , Thank u, i will check how to import newly js files to app.js. i dont have experience on that. Thanks for ur quick reply. Good work..
Here’s the example:
- First import jquery dependency
- Then select2
https://prnt.sc/sggnt1Then import it to app.js
https://prnt.sc/sggop1Don’t forget to run yarn run watch/npm run watch to re-compile the assets. Hope it helps.
Thank u so much.. I will try this..
No problem.. 
Hi Everyone,
Can help me please?
How can I prevent a modal from closing when clicking outside the modal itself?
Hi,
Did you mean the backdrop? If yes you can comment this line of codes in /src/js/modal.js starting at line 91 to 93.
$(‘body’).on(‘click’, function(event) { hide(event.target) })
Re-compile the assets by running yarn run watch/npm run watch.
is this good to use for SPA web sites?
Hi,
I think not really, you need to do a lot of customization because it’s basically jQuery template.
but its okay to use VUE js here?
Ya it’s ok..
do you have version of this without jquery? i really love the template but i guess i will be having problem with JQUery
We are still working on vuejs version, but it’s not done yet.
Hi mhonromero,
I am very sorry for making you wait a long time for our release information of the Vuejs version of Midone Admin template, if you are still interested in the product, please check the following link to explore more!
https://themeforest.net/item/midone-vuejs-admin-dashboard-template/28123408Thank you.. 
Thanks for support bro but my deadline already gone so sorry i will recommend this theme and your company but please refund my amount thanks in advance
Hi,
Please submit a refund request, i will let envato team decide wether it’s refundable or not in accordance with the envato refund policy.
Hi Support!,
I have tried to call bootstrap with this one but it clash with app.js . I tried to do everything i can do but i am not able to do that please give me updated code for modal popup thing please help me tomorrow is deadline for me to deliver the project.
I request you plz give me some solutions.
thanks in advance.
it is possible for you to update to code of footer.php please so that the code can show popup
Hi,
I already explain all the things about how to show modal with this template, please just submit a refund if you feel like this template doesn’t match your needs.
Please make a sample for me please bcoz tomorrow i have to deliver the project refund is not a big deal but problem with me is big deal. please provide me a sample file please i am requesting you please
Last option, try to include the plugin without webpack.
- Include jquery from cdn: <script src=”https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js”></script>
- Include modal plugin from template source: <script src=”src/js/modal.js”></script>
- Remove jquery dependency from modal.js “import $ from ‘jquery’”—> remove this
See if it works
See this screenshoot
https://prnt.sc/se3p2jSir it is possible i can call bootstrap model up with this css of not if this is possible then i don’t need refund my issue is solved
I never try it yet but it seems to work.
Try to include bootstrap assets like described on this link. https://getbootstrap.com/docs/4.4/getting-started/introduction/
Then use their modals to work with.
Sir it is possible to convert this into bootstrap or refund my amount
You can’t combine this template with bootstrap, it’s really different framework.
You can submit a refund if you want, and don’t need to spam a comments in here, please show some respect.