I've made editable into a function on one column, but now i'm seeing strange pattern in tabbing on this row
i added a function to return true or false, and make cells in a column selectively editable
I expected the tab-to-next input would skip over these fields to the next editable in this same row
instead i saw tabbing works normally until my column, then focus is shifted out of the grid to the bottom navigation elements.
interestingly, this works sometimes, and next i observe that when it allows forward tab nav, it does not work for shift-tab ( back tab)
$colM[7].editable = function (ui) {
return ( ui.rowData['Product__r']['Pricebook_Entry_Required__c'] == false ) ;
};
I'm probably missing something, but should i be managing focus if i turn off a cell in a row ?