gpt4 book ai didi

jquery - jqgrid 内联编辑,并使用编辑规则在网格中进行验证

转载 作者:行者123 更新时间:2023-12-01 02:44:41 27 4
gpt4 key购买 nike

我正在使用 jqGrid 内联编辑,并使用编辑规则在网格中进行验证,以向数据库添加和更新值。

问题是在将值提交到服务器后出现验证失败的警报

    colModel: [
{name: 'Country',
index: 'Country',
editable: true,
edittype: 'text',
sortable: false,
align: 'left',
search: false,
validation: { required: true }}
],

最佳答案

colModel 中的项目没有validation 属性。您应该使用正确的属性名称 editrules :

editrules: { required: true }

此外,您可以删除不需要的属性 edittype: 'text'align: 'left' (请参阅 the documentation 中的默认值)。由于 index 属性的值与 name 的值相同,因此您也可以将其删除。

关于jquery - jqgrid 内联编辑,并使用编辑规则在网格中进行验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14355212/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com