DataTable Javascript Link not working on 2nd page

$(document).ready(function () {
        var otable = $('#tbl-resources').dataTable(
               {
                   bJQueryUI: false, bFilter: true, bPaginate: true, bSort: false, bInfo: true,
                   "oLanguage": { "sSearch": "Click on column to sort / Search all columns for:" }
                   , "sPaginationType": "simple_numbers", "bAutoWidth": false,
                   "sDom": '<"row view-filter" <"col-sm-6"<"#ddl-category">><"col-sm-6"<"pull-right"f>>>t<"row view-pager"<"col-sm-7"<"pull-left"l><"pull-right"i>><"col-sm-5"<"pull-right"p>>>',
                   "aoColumns": [
                                 null,
                                 null,
                                 null,
                                { "width": "40%" }
                   ],
                   "buttons": [
                            {
                                extend: 'collection',
                                text: 'Select Resource Category',
                                "fnClick": function (nButton, oConfig, oFlash) {
                                    alert('Mouse click');
                                }

                            }

                   ]
               });

        $label = $('<label/>').text('Resource Category:').appendTo('#ddl-category')
        $label.append("&nbsp;&nbsp;&nbsp;&nbsp;");
        //insert the select and some options
        $select = $('<select/>', { 'class': 'form-control' }).appendTo('#ddl-category')
        @foreach (var item in Model.ResourceCategories)
        {
            <Text>

        $('<option/>').val('@item.Value').text('@item.Text').appendTo($select);

        </Text>


        }
        otable.$(".editResource").on('click', function () {
            var category = $('#ddl-category :selected').val();
            alert(category);
            var overridden = $(this).data('overridden');
            var resourceId = $(this).attr('data-resourceId');
            $.ajax({
                url: '@Url.Action("EditResource", "Correspondent")',
                type: "POST",
                data: { selectedId: resourceId, selectedCategory: category, IsOverriddenResource: overridden },
            }).success(function (result) {
                $('#div-edit-modal').html(result);
                $('#edit-modal').modal('show');
            });
        });

    });

My last column in Datatable is link, but only work on the first page, whenever I changed the page number or number shown on page the links were not working.

Solution: Delegated events have the advantage that they can process events from
      descendant elements that are added to the document at a later time. By
      picking an element that is guaranteed to be present at the time the
      delegated event handler is attached, you can use delegated events to
      avoid the need to frequently attach and remove event handlers.

So, instead of using

$(".editResource").click(function () {

need to use dataTables.$()   which is

otable.$('.editResource').on('click', function () {

转载于:https://www.cnblogs.com/MiaBlog/p/6049502.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值