I have a grid which consists of a queryable datasource and template column.
<telerik:RadGrid ID="rulesGrid" runat="server" AutoGenerateColumns="true">
<MasterTableView>
<Columns>
<telerik:GridTemplateColumn HeaderText="Status" UniqueName="statusResult">
</telerik:GridTemplateColumn>
</Columns>
</MasterTableView>
</telerik:RadGrid>
And in the page_load
var ruleset = (from s in (this.Page as BasePage).DbContext.ProductEventChecks
where s.Sequence!=0
orderby s.Sequence
select new
{
Description = s.Description
});
rulesGrid.DataSource = ruleset;
rulesGrid.DataBind();
So, the problem is that status field(template column) comes before the Description field. But I wanted Description to be displayed first. Can you please help me out in finishing this?