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 表列上添加 jQuery UI 微调器?
我有一个包含 7000 多条记录的 jqgrid 表,我想在一列上应用微调器。jqgrid 允许这样做吗?
提前致谢!
是的,有很多方法。
您可以将 html 作为单元格数据传递,而不是仅传递一个数字(不是最好的方法):
<input class="spinner" name="value">
网格加载后使用:
your_jqgrid.gridComplete(function(){$(".spinner")..spinner();
更好的是,您还可以为该列设置一个格式化程序,然后一次性完成所有操作。