Open
Description
My Question Here ?
I am using a FormView, as the form is quite long, I want to display it in small cards. I am using Frames to group blocks of inputs, but if I try to put the Submit button into a frame for aesthetic purposes, it no longer triggers the command defined using the FormView submit command. Is this by design or am I just doing something wrong?
<input:FormView SubmitCommand="{Binding SubmitCommand}"
IsValidated="{Binding IsValidated}"
Spacing="10">
<Frame>
<Button Text="Save" input:FormView.IsSubmitButton="True"/>
</Frame>
</input:FormView>