I have an issue in edititemtemplate of radgrid.I have a radcombobox on edit of radgrid.The issue is required field indicator "*" is appearing in the next line of the radcombox.i want this "*" and validation message to appear next to the radcombobox.i have tried many ways in HTML.But of no use.Any help would be greatly appreciated.
<
EditItemTemplate>
<telerik:RadComboBox Height="100px" Width="150px" Skin="WebBlue" ID="RadCboBusinessUnit" runat="server"
EnableVirtualScrolling="true" EmptyMessage="Please Select..." MarkFirstMatch="true" AllowCustomText="true" CausesValidation ="false"
Text ='<%# DataBinder.Eval(Container.DataItem,"BusinessUnit" )%>' AutoPostBack ="true" OnSelectedIndexChanged = "RadCboBusinessUnit_SelectedIndexChanged" >
</telerik:RadComboBox>
<span class="lbl_Mandatory">*</span>
<asp:RequiredFieldValidator ID="ValidateBusinessUnit" runat="server" ControlToValidate ="RadCboBusinessUnit" ErrorMessage="Value Is Required"></asp:RequiredFieldValidator>
</EditItemTemplate>
FYI -- The below code is actually causing out the issue.
<
telerik:AjaxSetting AjaxControlID="RadCboBusinessUnit">
<UpdatedControls>
<telerik:AjaxUpdatedControl ControlID="RadCboBusinessUnit" LoadingPanelID="RadAjaxLoadingPanel1" />
</UpdatedControls>
</telerik:AjaxSetting>
Thank You!
Gurubaran