Browse By Tags

  • Enter edit-mode after adding new row

    I have a grid bound to a collection (ListCollectionView). I'm trying to add new item to the list by

        myList.Insert(0, viewModel);
        myList.MoveCurrentToPosition(0);

    Grid has many columns and one is called "Name". It's a text field column with CellValuePresenter…