How to refresh list page and do not lost focus in grid?
I opened detail form in list page grid. I have done some changes in the detail form(say added the qty, changed the unit price..etc), while close() the form I am refreshing the list page grid (only the selected record. it increase the performance rather refresh all records in the grid) FormDataSource callerDataSource; int position; if (element.args().record()) { callerDataSource = element.args().record().dataSource(); position = callerDataSource.getPosition(); callerDataSource.reread(); callerDataS...