Twitter Bootstrap Datepicker within modal window

后端 未结 22 1863
旧时难觅i
旧时难觅i 2020-11-29 02:42

I am currently using the Twitter Bootstrap framework, and when using the modal windows I cannot get over js elements to work like datepicker or validation, though chosen and

22条回答
  •  难免孤独
    2020-11-29 03:11

    According to http://www.daterangepicker.com/ (options)

    $('#dispatch_modal').on('shown.bs.modal', function() {
         $('input:text:visible:first').focus();
         // prepare datepicker
         $('.form_datepicker').daterangepicker({
              singleDatePicker: true,
              showDropdowns: true,
              parentEl: '#dispatch_modal'   
         });
    });
    

    `

    parentEl solved my problem...

提交回复
热议问题