HI Telerik
i am binding grid like this through code
i am binding grid like this through code
GridView1.DataSource = tblsalesData;
GridView1.DataBind();
and in .aspx page it is like this
<telerik:RadGrid ID="GridView1" runat="server" AutoGenerateColumns="true" Width="940px">
<ItemStyle HorizontalAlign="right" Font-Size="10px" Font-Names="verdana" />
<AlternatingItemStyle Font-Size="10px" Font-Names="verdana" HorizontalAlign="right"/>
<HeaderStyle HorizontalAlign="Center" Font-Bold="true" Font-Size="10px"
Font-Names="Verdana"></HeaderStyle>
</telerik:RadGrid>
My problem is that,
1. i want to change the horizental align to left only for 1st column.
2. want to put thousand seperator for only first two rows data.
please guide me how to achieve this result.