Angular Kendo 网格:转到页面输入和下一步按钮

Angular Kendo Grid: Go To Page Input and Next Buttons

有没有办法在 Kendo 网格中放置一个“转到页面”输入搜索按钮,如下所示?我们需要 next/back 按钮和转到页面输入。那可能吗?正在尝试通读文档。

https://www.telerik.com/kendo-angular-ui/components/grid/paging/

答案就在您提供的 link 上。转到寻呼机类型部分。它说 : "type - 接受数字(带数字的按钮)和输入(用于输入页码的输入)值。"

只需将类型设置为输入即可获得“转到页面”输入。

[pageable]="{
  buttonCount: buttonCount,
  info: info,
  type:'input',
  pageSizes: pageSizes,
  previousNext: previousNext
}"