Hi,
I have a template column in my grid set to RadComboBox. I have set the RequireFieldValidator as well on that control. But somehow on insert/edit of a row, the validator doesnt fire.
Is there something else I need to do?
Regards,
Saurabh
I have a template column in my grid set to RadComboBox. I have set the RequireFieldValidator as well on that control. But somehow on insert/edit of a row, the validator doesnt fire.
| <EditItemTemplate> |
| <telerik:RadComboBox ID="rcbStartPort" runat="server" Skin="Custom" EnableEmbeddedSkins="false" AllowCustomText="False" |
| EnableVirtualScrolling="False" OnItemsRequested="rcbStartPort_ItemsRequested" Height="100px" |
| EmptyMessage="Select a Port" MarkFirstMatch="true" EnableLoadOnDemand="true" OnClientBlur="OnClientBlurHandler" ></telerik:RadComboBox> |
| <asp:RequiredFieldValidator ID="rfvStartPort" runat="server" ControlToValidate="rcbStartPort" |
| Display="None" ErrorMessage="Start Port is mandatory" SetFocusOnError="True"></asp:RequiredFieldValidator> |
| </EditItemTemplate> |
Is there something else I need to do?
Regards,
Saurabh