444 comments found.
Dear Team
we are using three major components through out the template i.e – Data-table, Date Pickers, Modal dialog and Tab controls.
1. Data-table challenges I am using regular table class name – table table-bordered table-hover but not achieve pagination, table row filters and search features like tabulator. I tried with tabulator which is mapped with “app.js” but finding difficulties in binding data to table. how can I achieve features like search, pagination, row filter present in tabulator table into the regular table with class name mentioned above. Example we have shared the link
2. j query challenges we are not able to refer standard j-query lib in the script tags and use features like a) $(”#test option:selected”).text(); b) cannot make a ajax call c) find(“td:eq(33)”).text();
3. Nav menu challenges when sub-menu item is selected, page will be redirected but sub menu is not highlighted and open.
j-query version – 3.6.3V
Application we are developed in .net framework v4.7.2
Demo Site(all the issue type mentioned) Link – http://www.smarthyneticworld.com/Test
kindly please guide us to fix the challenges ASAP Thank you
Dear adminh1,
Thank you for reaching out to us regarding the challenges you are facing with your implementation of data tables, date pickers, modal dialogs, and tab controls. I understand that you are encountering difficulties in binding data to tables, referencing the standard jQuery library in your script tags, and ensuring that sub-menu items remain highlighted and open when selected.
1. To customize the data in Tabulator, you need to update the code in the following file /src/js/tabulator.js. In this file, you can change the columns and other properties from the Tabulator configuration. Then, you need to compile the JS assets using the command yarn run watch.
2. Currently, we are not using jQuery. We have written a built-in mini library called ‘dom.js’ which is used to manipulate the DOM elements and is inspired by jQuery. We wrote this library to keep the final code size small by removing unnecessary functions in jQuery. You can access the code of dom.js at the following path: /node_modules/@left4code/tw-starter/dist/js/dom.js.
However, we can replace this plugin with jQuery if you require the full functionality of jQuery. First, we need to install jQuery using the command ‘yarn add jquery’. Then, access the file at /src/js/bootstrap.js and replace the following line.”
// Load plugins
import helper from "./helper";
import * as Popper from "@popperjs/core";
// Replace this line
// import dom from "@left4code/tw-starter/dist/js/dom";
// To this
import jquery from "jquery";
// Set plugins globally
window.helper = helper;
window.Popper = Popper;
// Replace this line
// window.$ = dom;
// To this
window.$ = jquery;
After that, you can use the functions in jQuery as usual.
3. To activate the active side menu, you need to manually add the class “side-side-menu—active” to the active menu and “side-menu__sub-open” to the active submenu dropdown. You can do this on the backend side. For more details, you can check out the following element structure.
https://i.imgur.com/3dWuLZj.png
Please use incognito if you are using chrome or use another browser if you can’t open the above link.
We hope this solution will be helpful in resolving your issue. If you need further assistance, please don’t hesitate to reach out to us again.
Best regards, Left4code Team
Dear team,
I’m using date-picker in different pages but it should be different format. 1.DD-MM-YYYY 2.MM-YYYY 3.YYYY 4.DD
I want use the date-picker in different formats
How can we achieve this, please guide us
Hello!
Thanks for reaching out. To change the format of your date picker, you can follow these steps:
1. Open the file “src/js/datepicker.js”.
2. On line 15, you can change the format to one of the following options: “DD-MM-YYYY”, “MM-YYYY”, “YYYY”, or “DD”.
3. The format option should be set to the desired format you would like to use.
Let me know if you have any other questions or if there’s anything else I can assist with.
I have sent you an email regarding this issue ‘When a page is refreshed the sidebar menu is shaken. How to disable this shaking?’
But it’s not replied to. Please check and reply to me please.
Hi, I’m using a older version of the templates and it has @left4code/tw-starter V1.1.0 , i see there is a V 3.1.39 but i cant upgrdae it without everything breaking, what is this file/ dependancy doing?
Hi there,
Thank you for reaching out to us,
The latest updates of the package @left4code/tw-starter v3+ were released for Tailwind 3+, in the latest version, the Midone package doesn’t use SASS anymore and only uses regular CSS because of a compatibility issue with Tailwind.
You can see the code in ”/node_modules/@left4code/tw-starter/dist/*” for more details.
Hi Is it possible to change the dark mode without refreshing the page? (HTML version)
Hi,
Thank you for reaching out to us,
The short answer is, yes, it’s possible. We only need to add the dark mode class to the root HTML element.
Is it possible to add this item in future updates?
Hi, I need help. I want to apply this to the sveltekit project. Is there an example?
Hi there,
Sorry for the late response,
Unfortunately, at this time our team doesn’t have any integration experience with sveltekit or the boilerplate that works with svelte.
Please don’t hesitate to contact us if you have any other questions.
Hi there,
Simple Api Token authentication aren’t working ! Even the basic default one from Laravel (Get on /api/user)
Any workaround please ?
Thanks & Regards
Note : For each Api call using the middleware auth:sanctum, we are redirected to the home page
How can I remove side-nav, top-nav or other page elements animations? Please answer me
can you add Kanban component?
Hello, bought two of your Templates, Rue and HTML editions. I need to implement Tables with Datatables. Don’t like tabulator. How Can i make it work with your app.js Please tell me how can i make it work.
Hi there,
Sorry for the late reply,
Actually, we have never used `Datatable`, and this is not included in the Item Support because the use of plugins other than what we provide is the responsibility of each buyer.
But maybe you can try the following steps.
To use `Datatables` you need to install the package first.
yarn add jquery
yarn add datatables.net
yarn add datatables.net-dt
Create new file ”/src/js/datatable.js”.
var jquery = require( 'jquery' );
var dt = require( 'datatables.net' )( window, jquery);
let table = new DataTable('#example', {
// options
});
Last step, import the last created file into app.js.
/*
|--------------------------------------------------------------------------
| Custom Components
|--------------------------------------------------------------------------
|
| Import JS custom components.
|
*/
import "./maps";
import "./chat";
import "./show-modal";
import "./show-slide-over";
import "./show-dropdown";
import "./search";
import "./copy-code";
import "./show-code";
import "./side-menu";
import "./mobile-menu";
import "./side-menu-tooltip";
import "./dark-mode-switcher";
// Import last created datatable file
import "./datatable";
Run `yarn run watch` to recompile the assets.
Hope this helps.
Hi,
is there a chance to get the XD Design File (mentioned in the delivered files) for the Midone Admin Dashboard Template ?
dcbd1cb0-aec0-41cc-ac57-a8e857c8ea34 – 26 Oct 2022
BR Daniel
Hi,
Thank you for reaching out to us,
The XD design file is currently only available for Rubick version, the first version of Midone. You can check it inside the Rubick version directory.
Hello, Are you providing a customization service?!
Hi,
Thank you for reaching out to us,
Unfortunately, We currently do not provide customization service.
Hi Support Team
Is this template based on Bootstrap 4 or 5 version ?
Hi,
Thank you for reaching out to us,
Unfortunately, we don’t use bootstrap, it’s a Tailwind template.
I hope all is well with you. I bought your theme “Icewall v2.0.7” and I found it awesome, but I’m facing some problems while trying to use the built-in Tabulator implementation in my views.
I’m using .Net Core framework as a back-end and front-end, and I saw the example of how to make the Tabulator package accessible outside the app.js. Now when defining the table all is good, and it returns the real number of record, and filtration and ordering is all perfect. But, whatever I send to the table shows empty rows, there is no data is being filled in the table, whereas, it returns the total count of records successfully.
Images descriptions: 1.jpg: the return list that should be returned from API to MVC controller. 2.jpg: tabulator table column definition. 3.jpg: a collection of data “IEnumerable object in C#”. 4.jpg: the data which is being returned to the tabulator table. 5.jpg: the table with an empty value.
Note that I’m sending two records from my API controller, and the record count in the table is two.
I cannot clarify the problem, I tried too much with no result. I attached some pictures that may help you to configure my problem.
Can you please send me this template with the Vite setup. I am trying to integrate this template on Laravel Vite, but It has only webpack.
My email is : damodar.bhattarai.1999@gmail.com
Hi,
Sorry for the late reply,
Just had time to make a sample project. We have sent the file, please check your email.
Hi,
I just purchased the themeforest-eowLGjvS-midone-jquery-tailwindcss-html-admin-template and Im wondering if there is a chance to get the mentioned XD files as well.
BR Daniel
Hi there,
Thank you for reaching out to us,
The XD design files are currently only available for the Rubick version.
https://prnt.sc/17tcd3a
Best regards, Left4code Team
I need wordpress version. please.
will you add more icons like the qr icon, barcode icon or etc?
Hi there,
Unfortunately, for now we will only be using the lucide icon. Maybe you can use the following icon.
https://lucide.dev/?search=barcodeHi, Great work, I love the theme. I just wanted to check how can I add a jquery plugin? I tried to add the smart wizard plugin, but I always receive the error:
``` app.js:16357 Uncaught TypeError: Cannot set properties of undefined (setting ‘on’) ```
app.js:16357 ``` const addEvent = (nodeList, event, callback) => { nodeList[event] = callback; }; ```
Is there a way to integrate jquery and jquery plugins with the theme?
Thank you!
I just noticed someone asked how to add jquery, I followed your instructions and its is working perfectly now!
Steps:
``` yarn add jquery ```
replace bootstrap with jquery
yarn run watch
use the new app.js file
Glad it worked, let me know if you need any other help.. 
Hi, after adding jQuery, the modal stopped working. I believe the problem is due to removing the dom element when using jQuery.
Error is:
Uncaught TypeError: Cannot read properties of undefined (reading ‘dispatchEvent’)
This line: ``` import dom from ”@left4code/tw-starter/dist/js/dom”; window.$ = dom; ```
was replaced with:
``` import jQuery from “jquery”; window.$ = window.jQuery = jQuery ```
Is there a solution to fix element reading dom instead of jQuery?
Hi,
Thank you for your reply,
Can you send step-by-step to reproduce the issue?
The modal js code doesn’t rely on jquery, so replacing the `dom` package shouldn’t affect the built-in libraries.
We just checked the current release with jquery and accessed the modal page without any issues. https://i.imgur.com/oYrnkrs.pngHi, I bought the HTML version of Midone by mistake and I really wanted Laravel9 version. Is it possible to change this what I have for Laravel version? I would pay the difference of course.
best regards
Hi,
Sorry for the late reply,
Yes, we can help you with this but you have to buy the Laravel version first and apply for a refund for the html version at this link.
https://themeforest.net/refund_requests/new
We will accept your refund request as soon as we check your purchase history, thank you.