0

我想在寻呼机中添加额外按钮,而不会干扰默认的 ui 元素,例如 1) Gotopage 2) 显示行 3) 寻呼信息等,

我可以编写自定义页面渲染器。但它通过重写 pager.js 中存在的所有功能来增加我的代码空间。你能帮忙吗,因为我是这个网格的新手

4

1 回答 1

0

The id of the div default pager is 'pager', so you can try add elements into the div. This work for me :
Html :

<div id="jqxgrid"></div>
<div id="custonPager">
    <a class="jq-btn" id="btnRefresh"><i class="icon-refresh"></i></a>
</div>

JS Code

// init jqxgrid
$("#jqxgrid").jqxGrid({..});
//add custom buttons in pager div
$("#pager").children().each(function(){
    $(this).append($("#custonPager").children());
});
$(".jq-btn").jqxButton();
于 2013-04-10T15:54:52.560 回答