I have the following configuration on my grid regarding validation:
<
ValidationSettings
EnableValidation
=
"true"
/>
And then there are columns that have validation add like this:
<
telerik:GridBoundColumn
DataField
=
"Name"
HeaderText
=
"Short Name"
>
<
ColumnValidationSettings
EnableRequiredFieldValidation
=
"true"
>
<
RequiredFieldValidator
BackColor
=
"MediumVioletRed"
ErrorMessage
=
"*"
/>
</
ColumnValidationSettings
>
</
telerik:GridBoundColumn
>
Now, this works just fine. But this just shows a message with a red background. I want to style the input field to use the BackColor value.
Is there a good way of doing this?