I have a template column in a radgrid, with a radiobuttonlist and I put on a validator. Problem is the setfocusonError does not set focus on the validator. My grid has about 40 records so sthey are at bottom clicking on the submit button thinking its not working when in fact they have a validation error. How can i fix this so that it focuses on the validation error.
<telerik:GridTemplateColumn HeaderText="GO \ NOGO \ Not Fixable" ItemStyle-HorizontalAlign="Center" HeaderStyle-Width="210px">
<ItemTemplate>
<asp:RadioButtonList ID="rblDental" runat="server" RepeatDirection="Horizontal" TextAlign="Right" Font-Size="Smaller" RepeatLayout="Flow">
<asp:ListItem Value="0" Text="GO " />
<asp:ListItem Value="1" Text="NO\GO " />
<asp:ListItem Value="2" Text="N\F" />
</asp:RadioButtonList><br />
<asp:RequiredFieldValidator ID="valDRadio" runat="server" ControlToValidate="rblDental" ErrorMessage="Not Answered" ForeColor="Red" ValidationGroup="Dental" SetFocusOnError="true" />
</ItemTemplate>
</telerik:GridTemplateColumn>
<telerik:GridTemplateColumn HeaderText="GO \ NOGO \ Not Fixable" ItemStyle-HorizontalAlign="Center" HeaderStyle-Width="210px">
<ItemTemplate>
<asp:RadioButtonList ID="rblDental" runat="server" RepeatDirection="Horizontal" TextAlign="Right" Font-Size="Smaller" RepeatLayout="Flow">
<asp:ListItem Value="0" Text="GO " />
<asp:ListItem Value="1" Text="NO\GO " />
<asp:ListItem Value="2" Text="N\F" />
</asp:RadioButtonList><br />
<asp:RequiredFieldValidator ID="valDRadio" runat="server" ControlToValidate="rblDental" ErrorMessage="Not Answered" ForeColor="Red" ValidationGroup="Dental" SetFocusOnError="true" />
</ItemTemplate>
</telerik:GridTemplateColumn>