Okay
  Public Ticket #2053132
Datatable js file prevent modal popup to open
Closed

Comments

  • kierayre started the conversation

    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


  •   kierayre replied privately
  • [deleted] replied

    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?