最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

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

programmeradmin5浏览0评论

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") });
        }
    )}

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") });
        }
    )}
Share Improve this question edited Mar 19, 2013 at 11:05 Dipesh Parmar 27.4k8 gold badges64 silver badges92 bronze badges asked Mar 19, 2013 at 11:00 FreddyFreddy 9801 gold badge22 silver badges46 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 10

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();
};
发布评论

评论列表(0)

  1. 暂无评论