Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
AI Productivity Tools
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
You may handle the RowEditEnded event and once the index of the currently edited item is equal to the last one, you may call the BeginInsert() method:
void playersGrid_RowEditEnded(object sender, GridViewRowEditEndedEventArgs e)
{
if(this.playersGrid.Items.IndexOf(e.Row.Item)==this.playersGrid.Items.Count-1)
this.playersGrid.BeginInsert();
}