In the Kanban editor dialog like this
link,
I can properly get the data of the updated/created cards through the
AddedRecords/ChangedRecords in onactioncomplete's ActionEventArgs. The
problem is to validate the data input. If I am not wrong, I should use
the EditForm tag for that purpose, and I have to add the code below to a
class property:
[RegularExpression(@"^[a-zA-Z0-9 ]+$", ErrorMessage = "Special characters are not accepted.")]
I
tried that but nothing occurred even I typed banned characters, I
suspect the problem is the form does not know I clicked the default
kanban editor dialog submit button, because the inline code
"OnValidSubmit='@submit'" does not link to the submit button.