We have columns in Datagrids with inlineEditor = true and when we tab through the rows, even though the focus changes, the row is not selected correctly.
This is the SOHO example that has it:
https://latest-enterprise.demo.design.infor.com/examples/saleshub/product-search.html
To Reproduce
Steps to reproduce the behavior:
1) Select the qty cell of say, row1
2) Tab through the cells/rows to say, qty cell of row3
3) Change qty to 8
4) You will notice that it has changed the qty of row1
Expected behavior
Qty of row3 should change to 8
Platform
From a convo on this with @ShyamaMenon also noting that it may be related to this area:
This change breaks tabbing through the actionable grid items.
The cells are not inaccessible

There needs to be a check to see if the column has an inline editor, so that it is not applied to other columns.
if (key === 9 && self.editor && self.editor.name === 'input' && col.inlineEditor === true) {
@davidcarlsonberg - Can you check this out? Sounds like a reasonable adjustment to me.
https://4170-beta0-enterprise.demo.design.infor.com/examples/saleshub/product-search.html
Passed QA testing on all browsers, moving to Done.