JS取消分页功能

在这里插入图片描述
$(".k-pager-wrap.k-grid-pager.k-widget.k-floatwrap").hide();

  @(Html.Kendo().Grid<EMS.Models.CallRepair>()
                                                                       .Name("grid")
                                                                       .Columns(columns =>
                                                                       {
                                                                           //columns.Bound(c => c.Id).Filterable(false).Sortable(false).Width(140);
                                                                           columns.Bound(c => c.Begin_Repair_No).Filterable(false).Sortable(false).Width(90);
                                                                           columns.Bound(c => c.MachineNo).Filterable(false).Sortable(false).Width(60);
                                                                           //columns.Bound(c => c.BomPartNo).Filterable(false).Sortable(false).Width(50); 
                                                                           columns.Bound(c => c.PartNo).Filterable(false).Sortable(false).Width(80);
                                                                           columns.Bound(c => c.PartDesc).Filterable(false).Sortable(false).Width(130);
                                                                         
                                                                           //columns.Bound(c => c.Unit).Filterable(false).Sortable(false).Width(30);
                                                                           columns.Bound(c => c.StoreCode).Filterable(false).Sortable(false).Width(60);
                                                                           columns.Bound(c => c.StoreQty).Filterable(false).Sortable(false).Width(50);
                                                                           columns.Bound(c => c.ReqQty).Filterable(false).Sortable(false).Width(50);
                                                                           columns.Bound(c => c.GiQty).Filterable(false).Sortable(false).Width(50);
                                                                           columns.Bound(x => x.AQty).ClientTemplate("<input style=\"width:40px;background-color:yellow \" ID=\"Q_#=Id#\" value=\"0\" type =\"textbox\" onblur=\"Onbb(#=Id#)\"/> ").Sortable(false).Width(60);
                                                                           columns.Bound(c => c.Line_Name).Hidden(true).Filterable(false).Sortable(false).Width(40);
                                                                       })
                                                                       .DefaultOptions()
                                                                                   .Filterable(f => f.Enabled(false))
                                                                                   .Events(e => e.DataBound("boundGridMaintainStatus"))
                                                                                   .DataSource(dataSource => dataSource
                                                                                   .Ajax()
                                                                                   .Batch(true)
                                                                                   .Read(read => read.Action("GetRepairGIInfo", Html.ControllerName(), new { strOrderNumber = Model.Begin_Repair_No }))
                                                                                   .ServerOperation(true)
                                                                                   .Model(m =>
                                                                                   {
                                                                                       m.Id(c => c.Id);

                                                                                   })))
    $(document).ready(function () {
        $(".k-pager-wrap.k-grid-pager.k-widget.k-floatwrap").hide();

            $("#grid").kendoTooltip({
                show: function (e) {
                    if ($.trim(this.content.text()) != "") {
                        $('[role="tooltip"]').css("visibility", "visible");
                    }
                },
                hide: function () {
                    $('[role="tooltip"]').css("visibility", "hidden");
                },
                filter: "td:nth-child(n+3)",
                content: function (e) {
                    var element = e.target[0];
                    if (element.offsetWidth < element.scrollWidth) {
                        var text = $(e.target).text();
                        return '<div style="min-width:50px;max-width: 500px;">' + text + '</div>';
                    } else {
                        $('[role="tooltip"]').css("visibility", "hidden");//解决鼠标一开始放在上面出现空模块
                        return "";
                    }
                }
            }).data("kendoToolTip");
        });
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值