RC6.4 RequestFocus doesn't work

Hi
I am trying RC6.4m, it seems the requestFocus is not working in this version that worked in earlier version,


private void addNewRow() {
    JournalLine line = metadata.create(JournalLine.class);
    line.setJournal(journalDs.getItem());

    //creating lineNumber
    int max = 0;

    Integer lastNum = journalLineDs.getItems().stream()
            .map(JournalLine::getLineNumber)
            .max(Integer::compareTo)
            .orElse(0);
    line.setLineNumber(lastNum+1);

    journalLineDs.addItem(line);
    journalLineTable.setSelected(line);

//       sortLines();

    // set focus on the first cell of the added row
    journalLineTable.requestFocus(line, "account");
    journalLineTable.scrollTo(line);
}

Hi,

Thank you for reporting the problem. I’ve checked it and confirm that it is reproduced, we will fix it in the final 6.4.0 version. We have created a YouTrack issue, see the link on the right.

:ticket: See the following issue in our bug tracker:

https://youtrack.cuba-platform.com/issue/PL-8553