Important:
This support area is for Kalium 3 users only.
Support for Kalium 4 has moved to our new platform at support.laborator.co.
If you’re using Kalium 4, please create a new account there using your email and license key. A password will be sent to you automatically.
Hi there,
I need your urgent support of your neon theme.
I add datatable.js in my web page then my modal popup is not opening.
Here is my code to open modal popup:
$(document).on('click', '#btnAddNewProdCat', function (e) {
jQuery('#ManageProdCatModal').modal('show');
});
But when I remove datatable.js file from my web page then my above code will work.
Please check screen shots
Hi kierayre,
I think Datatable is causing $ (dollar sign jQuery) not to work properly so please use more explicit version of the same declaration:
jQuery(document).on('click', '#btnAddNewProdCat', function (e) { jQuery('#ManageProdCatModal').modal('show'); });If this doesn't work for you, can you give me access to that page so I can test the code online?