Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我得到了一个带有内联编辑的 jqgrid,并且可以添加新行。
目前,新行以“编辑”模式显示在网格顶部。我想要的是将新行添加到网格底部,因为我的“添加新行”按钮位于自定义底部分页器中......
有谁知道这是否可能?
您应该使用通常由inlineNavposition选项指定的addRow选项:addParams
position
addParams
$("#grid").jqGrid("inlineNav", "#pager", {addParams: {position: "last"}});
有关相应的演示,请参见此处。