views:

328

answers:

1

Hello All,

I am binding a data table to a Datagrid (WPF toolkit) for add, edit and delete. I am able to use tab keys to navigate through the cells from top to bottom. But as soon as I press tab on last rows' last column, it is not taking the cursor to the first cell of new row. How can I achieve this?

Thanks

A: 

Hello, please check this: 1. A datagrid has a property CanUserAddRows. Set in to true: CanUserAddRows="True" 2. The mode of databinding should be TwoWay: Mode="TwoWay"

Peter

Peter