How do you change the TabIndex or Tab Sequence in a record? We have a custom layout for the record and the TabIndex is not in the correct order.
Thank you.
<
igDP:FieldLayout.Fields><igDP:Field Name="BookTrackDate" Label="{Localize Date}" Row="0" Column
="0">
>
</igDP:Field.Settings
}"/>
="400">
="8" >
</igDP:Field.Settings>
</igDP:Field
="9" >
="9">
Ok, Thank you.
Hello AristidesSmith,
It has been a while since you have made your post, in case you still need of support I will be glad to assist you on the matter. I suppose the other community members can benefit from this answer as well. Regarding your issue I can suggest you handle the PreviewKeyDown and if the pressed key is Tab to force the cell you want to enter edit mode. You can use the following snippet to make the cell enter edit mode:
CellValuePresenter.FromCell(c.Record.Cells["email"]).StartEditMode();
For further reference, please have a look at the attached sample.
If you still have any questions on this, please do not hesitate to ask.