We are using TMS Web Core 2.6.1.2, FNC Core 4.0.1.0 and FNC UI Pack 6.0.1.2.
If we select a Kanban board item and use the ScrollToItem method to scroll the item into the visible area, this does not work reliably.
There has been a similar issue with the FNC Chat component ( FNCCHAT - Scroll to bottom - FNC / TMS FNC UI Pack - TMS Support Center) and the workaround there also seems to be a workaround here: Instead of doing a single call
TMSFNCKanbanBoard1.Columns[colindex].ScrollToItem(item.Index)
you have to do
for itemindex := 0 to item.Index do
TMSFNCKanbanBoard1.Columns[colindex].ScrollToItem(itemindex));