Hi Experts ..
I am using LINQ to to set RadGrid.DataSource, and I want to add additional empty row, at the 1st row of the grid, how to do that?
any idea?
I am using LINQ to to set RadGrid.DataSource, and I want to add additional empty row, at the 1st row of the grid, how to do that?
Master db = new Master(ConfigurationManager.ConnectionStrings["master"].ConnectionString); |
db.Log = Console.Out; |
EventsGrid.DataSource = from p in db.Event select p; |
<telerik:RadGrid ID="EventsGrid" runat="server" AllowSorting=true AllowPaging=true> |
</telerik:RadGrid> |
any idea?