Hi Captain,
What i want to do is, when i refresh the list. I want to keep the previously selected row highlighted. But it does'nt work.
This is how i refresh.
Code:
m_rowBind.getItems().clear();
This is how i re highlight the row.
Code:
if (currentRecord != null){
m_rowBind.selectAndFocusItem(currentRecord);
}
Note : currentRecord == previously selected row.