JQuery datepicker not working after ajax call

后端 未结 5 1611
一向
一向 2021-01-18 09:57

I have the following code


    
       //included all jquery related stuff ..not shown here
    
    
               


        
5条回答
  •  一向
    一向 (楼主)
    2021-01-18 10:30

    Call your picker inside .ajaxComplete function.

    $(document).ready(function () {
        // setup picker here...
    });
    
    $(document).ajaxComplete(function() {
       // setup picker here...
    });
    

    Here is a link

提交回复
热议问题