Hi!
I have a grid where price and quantity information shuold be displayed, unfortunately i cannot set die text alignment to right.
Here is my grid declaration
<telerik:RadGrid ID = "SummaryGrid" runat="server" AllowSorting="true" AutoGenerateColumns="false" style="margin: 0 0 0px 20px;" |
Width="760px" Height="300px" GridLines="none" OnNeedDataSource="SummaryGridNeedsData" Skin="Default"> |
<MasterTableView GroupLoadMode="Client" UseAllDataFields="true"> |
And a column in which the alignment is not working
<telerik:GridBoundColumn SortExpression="Quantity" HeaderText="Quantity" HeaderStyle-HorizontalAlign="Center" ItemStyle-HorizontalAlign="Right" HeaderButtonType="TextButton" DataField="Quantity"> |
<ItemStyle Width="80px" HorizontalAlign="Right"/> |
</telerik:GridBoundColumn> |
I tried to add the Horizontal Align attribute in both tags(GridboundColumn and ItemStyle) also i tried to set in only in one of these two tags, it never worked.
Can you please help me to solve this little issue.
Greetings
Martin