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.
グリッドでプラグイン RowEditing を使用して、検証をキャンセルしたときに「validateedit」にカスタム エラー メッセージを表示する方法を教えてください。
validateedit : function(editor, e) { if (condition) { e.cancel = true; // how to add an error message to a field } }
フォームとフィールドに関連付けられたセレクターとメソッドを使用するだけです
editor.editor.getForm().findField('fieldName').markInvalid('Message here');