0

私は剣道UIグリッドhttp: //demos.kendoui.c​​om/web/grid/index.htmlに取り組んでおり、一度に5つのレコードのみを表示し、ページネーションを通じて他のレコードも表示したいので、このコードを使用します

 $(document).ready(function() {
                $("#grid").kendoGrid({
                    dataSource: {
                        data: createRandomData(50),
                        pageSize: 5
                    },
                    groupable: true,
                    sortable: true,
                    pageable: {
                        refresh: true,
                        pageSizes: true
                    },
                    columns: [ {
                            field: "FirstName",
                    attributes:{"class": "table-cell"}        


                        } , {
                            field: "LastName",
                   attributes:{"class": "table-cell"}         
                        } , {
                            field: "City",
                   attributes:{"class": "table-cell"}           
                        } , {
                            field: "Title",
                   attributes:{"class": "table-cell"}           
                        } , {
                            field: "BirthDate",
                            template: '#= kendo.toString(BirthDate,"dd MMMM yyyy") #',
                   attributes:{"class": "table-cell"}           
                        } , {

                            field: "Age",
                   attributes:{"class": "table-cell"}       
                        }
                    ]
                });
            });
        </script>

行番号9のpageableはページネーションを有効にしますが、それはフッターバーのすべてのものを有効にします.私はすべてを必要としません.次と前のボタンが互いに隣接しているだけです:) また、すべてのドキュメントを読みましたhttp://docs.kendoui.c​​om /getting-started/using-kendo-with/aspnet-mvc/helpers/grid/configurationしかし、解決策が見つからなかったか、見逃した可能性があります。

4

3 に答える 3

0

デフォルトで有効になっている特定のオプションを無効にする方法を示すページャーのドキュメントを確認する必要があります。たとえば、数値を に設定するfalseと、数値ボタンが非表示になります。

于 2013-08-30T18:13:29.790 に答える