This is in relation to the ADG: The function indicesToIndex in AdvancedListBase is supposed to compute the offset into the data provider of a row.
It does this: return rowIndex * columnCount + colIndex; Which is producing the wrong answer as it should just be return rowIndex There are two bugs SDK-9687 and SDK-11076 which refer to the same sort of issue with a function named the same as this but are for the DataGrid. No mention of it being an issue in ADG. The function is used in setting the caret and anchor in a selection. Anyone aware of this?

