I have a cell editor with a data Template with two textboxes in it. Example:
<DataTemplate>
<TextBox />
<TextBox />
</DataTemplate>
When the row is in edit mode focus goes from cell to cell when you use the Tab key. When it hits the cell editor with the data template above I want the focus to go to the fist textbox, then the second textbox and then the next cell. I checked the documentation for some sort of focus scope, but didn't see anything. Is this possible?
Thanks,
Anthony