Chosen : jQuery plugin…does not work after postback in asp.net

后端 未结 4 500
遥遥无期
遥遥无期 2021-01-23 10:36

i am using http://harvesthq.github.io/chosen/ control in drop-down list. Everything is going good but i am facing a problem like if i am setting the property of dro

4条回答
  •  栀梦
    栀梦 (楼主)
    2021-01-23 11:27

    If you are binding plugins in $(document).ready();, then add this code and check.

    $(document).ready(function(){
    //Binding Code
    Sys.WebForms.PageRequestManager.getInstance().add_endRequest(EndRequestHandler);
        function EndRequestHandler(sender, args) {
            //Binding Code Again
        }
    });
    

提交回复
热议问题