I am using a RadDropDownTree in a GridTemplateColumn like the following.. when I get the add or edit the label is left justified and others are right justified
like this image...also the fonts are different...
like this image...also the fonts are different...
<telerik:GridTemplateColumn HeaderText="Available To" UniqueName="AvailableTo" Visible="true" Display="false"> <EditItemTemplate> <telerik:RadDropDownTree ID="AvailableTo" runat="server" Width="250px" OnDataBound="RadDropDownTree_DataBound" DefaultMessage="Please select" DropDownSettings-AutoWidth="Enabled" DataSourceID="SqlDataAvailableTo" DataFieldID="PK" CheckBoxes="CheckChildNodes" DataFieldParentID="Parent_PK" DataTextField="Description" DataValueField="PK"> <ButtonSettings ShowCheckAll="true" ShowClear="true" /> <Localization Clear="Clear All" /> </telerik:RadDropDownTree> </EditItemTemplate> <HeaderStyle HorizontalAlign="Center" /> <ItemStyle Width="50px" Font-Size="Small" HorizontalAlign="Center" /></telerik:GridTemplateColumn>