Quantcast
Channel: Telerik Forums RSS
Viewing all articles
Browse latest Browse all 99250

Display NewRowPosition Button When Adding New Rows

$
0
0
Hello Thanos,

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.

Viewing all articles
Browse latest Browse all 99250

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>