简体   繁体   中英

jQuery sorttable doens't work after postback in updatepanel (JavaScript)

I have a issue with the sortable function of jQuery. When my page does a post-back with the update-panel the sorting of the dynamic table doesn't work anymore. The post-back is triggerd when a image-button is pushed. When the image-button is pushed there is a new row with a subtable in it.

I tried these 3 JavaScript codes but they all only seem to work for the first time. They DON'T work after I open the subtable.

Do you guys maybe know a JavaScript solution to solve this?

My first try:

$(function(){
        $('table[id*="tbl_main"]').tablesorter();
    });

My second try:

$(document).ready(function(){
        $('table[id*="tbl_main"]').tablesorter();
    });

My third try:

function pageLoad() {
        $(function () {
            $("#pager").unbind();
            $('table[id*="tbl_main"]')
            .tablesorter()
            .tablesorterPager({ container: $("#pager") });
        }
    )}

After each update all scripts are removed, you have to bind them again like:

<asp:UpdatePanel ID="UpdatePanel1" runat="server">

     <ContentTemplate>
          <script type="text/javascript">
               Sys.Application.add_load(BindFunctions);
          </script>
...

And then in your javascript file:

function BindFunctions() {
$('table[id*="tbl_main"]').tablesorter();
};

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM