<
asp:Panel
runat
=
"server"
ID
=
"panelAddUser"
class
=
"panel panel-primary"
>
<
div
class
=
"panel-heading"
>New User</
div
>
<
div
class
=
"panel-body"
>
<
div
class
=
"row"
>
<
div
class
=
"col-xs-4"
>
<
asp:TextBox
runat
=
"server"
ID
=
"txtUsername"
CssClass
=
"form-control input-lg"
placeholder
=
"Username"
MaxLength
=
"32"
required
=
"required"
ValidationGroup
=
"FormValidate"
/>
</
div
>
<
div
class
=
"col-xs-4"
>
<
asp:TextBox
runat
=
"server"
ID
=
"txtPassword"
CssClass
=
"form-control input-lg"
placeholder
=
"Password"
TextMode
=
"Password"
MaxLength
=
"32"
required
=
"required"
ValidationGroup
=
"FormValidate"
/>
</
div
>
<
div
class
=
"col-xs-4"
>
<
asp:TextBox
runat
=
"server"
ID
=
"txtConfirmPassword"
CssClass
=
"form-control input-lg"
placeholder
=
"Confirm Password"
TextMode
=
"Password"
MaxLength
=
"32"
required
=
"required"
ValidationGroup
=
"FormValidate"
/>
</
div
>
</
div
>
<!-- /.row -->
</
div
>
</
div
>
</
asp:Panel
>
I have this panel and then below it i have another panel containing RadGrid control :)
When i click e.g. Edit or Delete imagebuttons in the Grid, i get the HTML5 validation errors from the panel panelAddUser.
I tried CauseValidation but it didn't help at all (i kept getting those errors).
Thank you