444 comments found.
I want to call it with jquery outside in the page that you gave me it is working inside but It wasn’t working outside please guide me it is very urgent
I want to simple call any function from your app.js files. For example:- function alertMessageModelPopup(message,type){ $(”#alertMessageModal”).modal(‘show’); } Above code in my footer.php
No you can’t, all plugins are imported via webpack and only can be accessed inside app.js. You need to make new js file and import it inside app.js.
I am not able to open any pop up box into this theme please guide me I am using various models into my code how I can do that with this theme
Hi,
Did you mean modals? Can you show me your code?
Show Modal we want to open this with jquery
Show Modal
You can use bellow code to show/hide modal, or even toggle it.
// Show modal
$('#programmatically-show-modal').on('click', function() {
$('#programmatically-modal').modal('show')
})
// Hide modal
$('#programmatically-hide-modal').on('click', function() {
$('#programmatically-modal').modal('hide')
})
// Toggle modal
$('#programmatically-toggle-modal').on('click', function() {
$('#programmatically-modal').modal('toggle')
})
Hi, I bought this template. After i change the js files from the “Source\src\js” how i would complile into “app.js” file and also css files?
Hi,
Thank you for your purchase!
You need to install Yarn/NPM to compile the assets. Then simply run yarn run watch/npm run watch from root project directory. It will automatically detect changes and re-compile when you change something in the code.
Thank u 
No problem.. 
Hi!!
where can i download the app.js unmimifid file??
Thank you
Hi,
Thank you for your purchase!
You can check it here “Source/src/js/app.js”.
Dears All, do you have a RTL version
Hi,
I am sorry, there’s no rtl version
I cannot find examples with invalid input fields.
Yes, but I managed by myself reproduce it using tailwind. But you can add to Components page snippet
It’s already in form page. You can check it in regular-form.html
Didn’t notice it. ))) Expected to see it, in components.
Didn’t notice it. ))) Expected to see it, in components.
Are you planning to upgrade Tailwind version ?
We are currently using Tailwind v1.2 which is released 2 months ago. I see the latest version and find out there is no significant update, only some new utilities.
But sure i will update it in the next version.. 
Thx… good to know
Your’e welcome..
Bwt, are you doing some extra pages and elements, for extra payment. Because I am thinking to buy your theme, but I am missing some special pages.
For extra payment of course
What pages is that?
Maintenance, wizard steps, and several more
Hmmmm i am very sorry, i cant afford it for now. Actually its already in the roadmap of planned features, but i am currently developing for vuejs version.
OOOOOO Another other thing, is that I need vue js version, when it’s going to be released ?
Oh, great because I was planning myself move it to vue js… Does this means, that jquery plugins will be replaced, by vue analogs ?
Maybe around 2 weeks, maybe longer or faster.. 
Great )))) But I would suggest to replace jquery plugins, with something from vue world.
Ya of course, most of the plugins will be replaced with vue plugins
)))) then deal done
Thank you.. 
Hi maxvanceffer,
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.. 
Hello yesterday I have bought your admin, SUMMERNOTE doesn’t works I can not see icones on summernote header, I have many admin dashboard templates but first time see like this can you point me or check your template and let me know when you correct this one
Hello yesterday I have bought your admin
you can see what is wrong here: https://demo.gridgum.com/test/side-menu-wysiwyg-editor.html
Hi somene already report this issue too, and we are still looking for good solution for this issue. Its only appear on production compile process.
As quick fix you can download this file : https://www.dropbox.com/s/05rydz2up2trhys/fonts.zip?dl=0
And place it to your root directory project.
thank you, I have installed fonts and now everything is ok
but when you solve this problem please let me know . Thank you for your help, template is fantastics 
Sure every buyers will be notified when new update is released. Thank you for your appreciation! 
If you dont mind please help us by giving 5 rate on this item, thank you.. 
hi, we just realized that why all the wysiwyg editor icon missing?
Hi somene already report this issue too, and we are still looking for good solution for this issue. Its only appear on production compile process.
As quick fix you can download this file : https://www.dropbox.com/s/05rydz2up2trhys/fonts.zip?dl=0And place it to your root directory project.
hi, yes.. fixed my problem alraedy… thank alot..
You’re welcome.. 
Please give us a rating if you like our template, thank you!
I tried to use the tooltipster in my Jquery code to render dynamic content with tooltip but it doesn’t work. Is the library included in app.js? Is there an alternative way to do that?
Code: $(elem).tooltipster({ ‘side’: right });
Ya it’s already included you can check in your app.js file at “3rd parties” section, you will find this line:
import tooltipster from ’./tooltipster’
Actually you dont need to re-call the plugin, i’ve made a code for that so you just need to write the html element like so:
<a href="javascript:;" class="tooltip button inline-block bg-theme-1 text-white" title="This is awesome tooltip example!" data-side="right">Show Tooltip</a>
Use this property `data-side=”right”` to set the tooltip content show direction.
I’m changing the title depending on the result of a request and when I change after the request is done, the instance of tooltipster is not been updated. How can I “update” this instance?
import $ from 'jquery'
import tooltipster from 'tooltipster'
$.post('ajax_url').done(function(data) {
$('#el').tooltipster('content', 'My new content')
})
Make sure you have already include your js file in app.js and recompile the assets by running “yarn run watch”
But that will happen in many parts of my code with different urls. So, I need something generic, any other ideas?
I solved it, thanks for the support
You’re welcome.. 
Please give us 5 rate if you like the template, thank you!
After I run yarn install and run npm run watch. It thow an error:
TypeError: require(...).copyDirectory is not a function
SOmething is wrong with webpack and laravel-mix. Any pointer?
Hi I have never found this issue before, can you post a log on the console when running “yarn run watch”? a screenshoot will be nice
>=>yarn run watch
yarn run v1.22.4
warning package.json: “dependencies” has dependency “cross-env” with range “7.0.0” that collides with a dependency in “devDependencies” of the same name with version “7.0”
$ npm run development——watch
npm WARN lifecycle The node binary used for scripts is /var/folders/t8/jcrjg7rs2279qbfxbxgwjvv80000gn/T/yarn-1588046007531-0.6693924165362519/node but npm is using /usr/local/bin/node itself. Use the `-scripts-prepend-node-path` option to include the path for the node binary npm was executed with.
> MidOne@1.0.9 development /Users/arifvirkill/Elixir/HTML Template/Midone v1.0.9/Source
> cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js -progress—hide-modules—config=node_modules/laravel-mix/setup/webpack.config.js “-watch”
/Users/arifvirkill/Elixir/HTML Template/Midone v1.0.9/Source/node_modules/webpack-cli/bin/cli.js:93 throw err; ^
TypeError: require(...).copyDirectory is not a function
at Object.<anonymous> (/Users/arifvirkill/Elixir/HTML Template/Midone v1.0.9/Source/webpack.mix.js:16:6)
at Module._compile (/Users/arifvirkill/Elixir/HTML Template/Midone v1.0.9/Source/node_modules/v8-compile-cache/v8-compile-cache.js:192:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:827:10)
at Module.load (internal/modules/cjs/loader.js:685:32)
at Function.Module._load (internal/modules/cjs/loader.js:620:12)
at Module.require (internal/modules/cjs/loader.js:723:19)
at require (/Users/arifvirkill/Elixir/HTML Template/Midone v1.0.9/Source/node_modules/v8-compile-cache/v8-compile-cache.js:161:20)
at Object.<anonymous> (/Users/arifvirkill/Elixir/HTML Template/Midone v1.0.9/Source/node_modules/laravel-mix/setup/webpack.config.js:12:1)
at Module._compile (/Users/arifvirkill/Elixir/HTML Template/Midone v1.0.9/Source/node_modules/v8-compile-cache/v8-compile-cache.js:192:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:827:10)
at Module.load (internal/modules/cjs/loader.js:685:32)
at Function.Module._load (internal/modules/cjs/loader.js:620:12)
at Module.require (internal/modules/cjs/loader.js:723:19)
at require (/Users/arifvirkill/Elixir/HTML Template/Midone v1.0.9/Source/node_modules/v8-compile-cache/v8-compile-cache.js:161:20)
at WEBPACK_OPTIONS (/Users/arifvirkill/Elixir/HTML Template/Midone v1.0.9/Source/node_modules/webpack-cli/bin/utils/convert-argv.js:114:13)
at requireConfig (/Users/arifvirkill/Elixir/HTML Template/Midone v1.0.9/Source/node_modules/webpack-cli/bin/utils/convert-argv.js:116:6)
at /Users/arifvirkill/Elixir/HTML Template/Midone v1.0.9/Source/node_modules/webpack-cli/bin/utils/convert-argv.js:123:17
at Array.forEach (<anonymous>)
at module.exports (/Users/arifvirkill/Elixir/HTML Template/Midone v1.0.9/Source/node_modules/webpack-cli/bin/utils/convert-argv.js:121:15)
at yargs.parse (/Users/arifvirkill/Elixir/HTML Template/Midone v1.0.9/Source/node_modules/webpack-cli/bin/cli.js:71:45)
at Object.parse (/Users/arifvirkill/Elixir/HTML Template/Midone v1.0.9/Source/node_modules/webpack-cli/node_modules/yargs/yargs.js:567:18)
at /Users/arifvirkill/Elixir/HTML Template/Midone v1.0.9/Source/node_modules/webpack-cli/bin/cli.js:49:8
at Object.<anonymous> (/Users/arifvirkill/Elixir/HTML Template/Midone v1.0.9/Source/node_modules/webpack-cli/bin/cli.js:366:3)
at Module._compile (internal/modules/cjs/loader.js:816:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:827:10)
at Module.load (internal/modules/cjs/loader.js:685:32)
at Function.Module._load (internal/modules/cjs/loader.js:620:12)
at Module.require (internal/modules/cjs/loader.js:723:19)
at require (internal/modules/cjs/helpers.js:14:16)
at Object.<anonymous> (/Users/arifvirkill/Elixir/HTML Template/Midone v1.0.9/Source/node_modules/webpack/bin/webpack.js:156:2)
at Module._compile (internal/modules/cjs/loader.js:816:30)
at Object.Module._extensions..js (internal/modules/cjs/loader.js:827:10)
at Module.load (internal/modules/cjs/loader.js:685:32)
at Function.Module._load (internal/modules/cjs/loader.js:620:12)
at Function.Module.runMain (internal/modules/cjs/loader.js:877:12)
at internal/main/run_main_module.js:21:11
npm ERR! code ELIFECYCLE
npm ERR! errno 1
npm ERR! MidOne@1.0.9 development: `cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js -progress—hide-modules—config=node_modules/laravel-mix/setup/webpack.config.js “-watch”`
npm ERR! Exit status 1
npm ERR!
npm ERR! Failed at the MidOne@1.0.9 development script.
npm ERR! This is probably not a problem with npm. There is likely additional logging output above.
Can you try to re-install laravel mix by running this command?
“yarn add laravel-mix@^5.0.1”
And run “yarn run watch”
Still the same result, but I think I found the issue:
These 2 lines inside `webpack.mix.js` seems to be the cause. It should be belong to mix object and the folder is not exist anyway. It worked after I delete it.
.copyDirectory('src/docs/images', 'docs/dist/images')
.copyDirectory('src/docs/fonts', 'docs/dist/fonts');
Glad you managed to make it work, thanks for reporting the issue. Dont hesitate to contact me if you have any other query.
Hie.
This is such a nice template. Is it available with Bootstrap 3 or 4 ?
Hi thank you for that, but sorry it’s not available with bootstrap
hey, i have a problem in the template , that the icons for wisywyg are not her !
Hi have you tried the “source” version? You may need to install the dependencies first by running “yarn install” then “yarn run watch” to recompile the assets. I will check the poduction files, it seems like something missconfigured with the summernote plugin assets.
Wow! Really nice! Good job
Thank you florianCha! It means a lot
Hello good, I have a problem, in the data table I have to represent a large amount of data, would you please make the template for 25 fields? If it can be with a button to enlarge the row and be able to view all the data. How much would it cost, we could talk on Skype my username is maiguelmor
Can you send the details to leftforcode@gmail.com? I will see it first and find out what i can help
Hola buenas, en la tabla data table me gustaria que contener mas datos, me podria hacer un com un dropdown de cada fila?
Saludos
Hi miguelmore89, sorry can you use english? I have difficulty understanding your question
@Left4Code, don’t let @sreethemes get to you. You’ve done hell of a job with such a beautiful theme. I have no need to buy it yet but just appreciating the beautiful work you’ve done! Great job!
Thanks mate, it helps a lot.. 