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 中使用表单编辑。当我添加新行或编辑现有行时,我想做重复行验证。jqgrid 是否提供任何库或者我们应该编写自定义代码。有没有人有任何代码来检查一行是否已经存在?我正在使用表单编辑。
请帮忙。谢谢。
$("#gridName").jqGrid('getCol',column_name)
这将返回 'column_name' 列中所有值的数组。只需对其执行 inArray() 即可搜索所需的值。