Hi,
I am using radDatadomain source to bind the values to grid..
when i go to the last row and press the down arrow key i want a new row to be added ..
how can it be done?
I am using silverligth 4 and using a telerik grid
1 Answer, 1 is accepted
0
Accepted
Maya
Telerik team
answered on 20 Jan 2011, 08:26 AM
Hello Keshava,
You may subscribe to the KeyDown event of the RadGridView and handle it as follows:
public MainPage()
{
InitializeComponent();
this.playersGrid.AddHandler(RadGridView.KeyDownEvent, new KeyEventHandler(OnKeyDown), true);