Hello
I want to implement horizontal pagination but got stuck at redrawing the rowlist after updating respective content node. content node got updated successfully but visually the the hidden items of the row are shown instead of newly added items. is there anything I need to after updating the content node of the rowlist. I found "currfocusColumn" field in roku developer docs but have no idea about using it. can anyone help me with this. Thanks in advance.
contents = []
'created content nodes for new items
contents = getSectionContents(newTitles)
if(contents.count() > 0)
m.sectionList.content.getChild(m.row).update({ children: contents })
end if