如何在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"
}]
}]
});
我想在时间栏中找到一个时间选择器,但这并不存在,所以我试图通过正则表达式在textEditor中获得时间。 网格加载了名为Time,Mo-Friday的列。 如果单击添加网格,则可以单击输入字段并填写时间。在点击完成之前应该验证时间并显示错误消息。
答案 0 :(得分:3)
缺乏验证是因为validatorOptions
属于editorOptions
(因为那些传递给您选择作为提供者的任何编辑器)。 validation: true
只会获得一些默认值,除了必需的文字字段外,它们确实不会做太多。
然后RegExp选项(就我所知的上述代码段中的电子邮件而言)自15.2以来一直是pattern
:)所以最后这个时间列你可以试试:
//...
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 Editor或Date Editor作为提供商。强制性文档链接:https://www.igniteui.com/help/iggrid-updating
P.S。绑定到一个空数组,以避免第一行没有值,更重要的是主键的错误。