Hello Thanos,
You can subscribe to the AddingNewDataItem event of RadGridView and call the CommitEdit and BeginEdit commands consequently through a Dispatcher:
Regards,
Stefan Nenchev
Telerik by Progress
You can subscribe to the AddingNewDataItem event of RadGridView and call the CommitEdit and BeginEdit commands consequently through a Dispatcher:
private
void
clubsGrid_AddingNewDataItem(
object
sender, Telerik.Windows.Controls.GridView.GridViewAddingNewEventArgs e)
{
Dispatcher.BeginInvoke(DispatcherPriority.Background,(Action)(() =>
{
this
.clubsGrid.CommitEdit();
this
.clubsGrid.BeginEdit();
}));
}
Regards,
Stefan Nenchev
Telerik by Progress
Do you need help with upgrading your AJAX, WPF or WinForms project? Check the Telerik API Analyzer and share your thoughts.