chosen with bootstrap 3 not working properly

后端 未结 6 720
醉话见心
醉话见心 2020-12-08 04:19

I have this code which triggers a bootstrap modal and load its content via $.load(). the page I\'m loading has a select element which I\'m calling chosen on. He

6条回答
  •  萌比男神i
    2020-12-08 05:05

    Adding width to your chosen class will solve this problem.

    $('.someClick').click(function(e){
       e.preventDefault();
       x.modal('show');
       x.on('shown.bs.modal', function(){
           x.find('.modal-body').load('path/page.html', function(response, status, xhr){
               if(status == "success"){
                   $("select[name=elementName]").chosen({ width:'100%' }); /* add width here !!! */
               }
           });
       });
    });
    

提交回复
热议问题