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.
我有grid一个textfield专栏。我想确保用户在单元格中输入唯一数据。但是如果我使用validator事件,它会在单元格被点击后立即验证。
grid
textfield
validator
我想在单元格完成编辑后对其进行验证。我试过validateOnChange了,不火。
validateOnChange
validateOnChange 不是一个事件,而是一个配置选项。在您的文本字段配置中将其设置为 false。
如果您希望在单元格完成编辑后验证它,您可以使用blur事件侦听器: blur
其他方式是使用正则表达式和正则表达式文本。