Telerik RadGrid: how to add a new row from code behind

asp.nettelerik

What's the simplest way to add a new row to a Telerik RadGrid in ASP.NET from code behind?

Best Answer

If you add a new item in the grid source and rebind the grid, this should do the trick (since the Telerik grid is data-bound control). To display the insertion form, set the MasterTableView.IsItemInserted property to true.

Dick

Related Topic