gpt4 book ai didi

javascript - 如何在 IgGrid 细胞(Infragistics)中获得正则表达式?

转载 作者:行者123 更新时间:2023-11-29 19:01:14 26 4
gpt4 key购买 nike

如何在 igGrid 更新中的 igTextEditor 上使用正则表达式?

我尝试使用验证选项,但它没有用。

   $("#schedulerTable").igGrid({
columns: $scope.schedulerColumns,
width: "87%",
height: "300px",
fixedHeaders: true,
autoGenerateColumns: false,
autofitLastColumn: true,
autoCommit: true,
renderCheckboxes: true,
responseDataKey: "results",
dataSource: $scope.schedulerData,
updateUrl: "",
primaryKey: 'Id',
features: [
{
name: "Updating",
generatePrimaryKeyValue: function (evt, ui) {
nextPrimarykey -= 1;
ui.value = nextPrimarykey;
},
enableAddRow: true,
enableDeleteRow: true,
editMode: "row",
columnSettings: [
{
columnKey: "Id",
editorType: "numeric",
editorOptions: {
readOnly: true
}
}, {
columnKey: "Time",
editorType: "text",

editorOptions: {
},
validatorOptions: {
regExp: /^[a-zA-Z]{1}[a-zA-Z0-9_\.\-]*\@\w{2,10}\.\w{1,10}$/,
onblur: true,
onchange: true
},

required: true,
validation: true,
defaultValue: "00:00"
},
{
columnKey: "Mo"

},
{
columnKey: "Tu"

},
{
columnKey: "We"

},
{
columnKey: "Th"

},
{
columnKey: "Fi"

}]
}]
});

我想在时间列中实现一个时间选择器,但它不存在,所以我尝试通过正则表达式在文本编辑器中只获取时间。网格加载了名为 Time, Mo- Friday 的列。如果你点击添加到网格,你可以点击输入字段并填写你的时间。在单击完成并显示错误消息之前应该验证时间。

查看表格的样子:https://codepen.io/ablablabla/pen/PJLbJz

最佳答案

缺乏验证是因为 validatorOptions属于editorOptions (因为这些会传递给您选择作为提供者的任何编辑器)。 validation: true 只获得一些默认值,除了必需的之外,这对文本字段真的没什么用。

然后 RegExp 选项(据我所知,它用于上面片段中的电子邮件)是 pattern从 15.2 开始 :) 所以在那个时间专栏的最后你可以尝试:

//...
editorOptions: {
validatorOptions: {
pattern: /^\d{1,2}\:\d{2}$/,
onblur: true,
onchange: true
},
},
//..

这是一个更新的代码笔:https://codepen.io/anon/pen/YrgYxj

编辑:或者如果你想设置错误信息:

//...
editorOptions: {
validatorOptions: {
pattern: {
expression: /^\d{1,2}\:\d{2}$/,
errorMessage: "Time should match a pattern like 00:00"
},
onblur: true,
onchange: true
},
},
//..

根据您的目标,您还可以使用 Mask EditorDate Editor作为提供者。还有强制性文档链接:https://www.igniteui.com/help/iggrid-updating

附言绑定(bind)到一个空数组以避免第一行没有值且更重要的是没有主键的错误。

关于javascript - 如何在 IgGrid 细胞(Infragistics)中获得正则表达式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46832828/

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