Maybe I'm blind - but what method/function is called by this? or do I need to specify the function with Click-attribute?
My template contains a RadzenButton with ButtonType=ButtonType.Submit but the void Submit() is apparently not called - at least the breakpoint is not reached.
<RadzenTemplateForm TItem="modelClass" Data=@model Submit=@OnSubmit>
...
<RadzenButton ButtonType="ButtonType.Submit" Icon="save" Text="Speichern" Style="font-size: x-large" />
....
void OnSubmit(modelClass value)
{
// save Model-changes -
in the above shown code-section the form is correctly filled from the model data but then the OnSubmit Method is apparently not called. I put a breakpoint at the first instruction inside void OnSubmit (the comment is infact a method call to store the data in the local datastore, but the breakpoint is not reached., so I need some help understanding the problem and possible solutions