Hi Team,
We have requirement where we want to validate some set of controls from one specific button.
<form OnSubmit="handleSubmit">
<Control1 />
<div> // This is specific section like repeater
<Control2 />
<Button2 />
</div>
<Control3 />
<Button1 />
</form>
The requirement is
1. Button1 will validate only Control1 and Control3 but not Control2.
2. Button2 will validate only Control2
I tried to implement this via enclosing Button2 and Control2 inside another form tag but react dom is giving warning of nested form tag.
Please let me know is there any way to achieve this functionality in Kendo React.
Regards,
Sanjay