Hi,
since Firefox 58.0.1 was released I have issues with my TreeGrids' scrollbars. They start to appear and disappear quickly, so they "jump around".
It is easy to reproduce. You just have to make the firefox window small and then open the tree until the scrollbars appear. Using smartgwt 6.1-p20180203. My test case:
since Firefox 58.0.1 was released I have issues with my TreeGrids' scrollbars. They start to appear and disappear quickly, so they "jump around".
It is easy to reproduce. You just have to make the firefox window small and then open the tree until the scrollbars appear. Using smartgwt 6.1-p20180203. My test case:
Code:
public void onModuleLoad() { final VLayout vlayout = new VLayout(10); TreeGrid employeeTreeGrid = new TreeGrid(); employeeTreeGrid.setWidth(500); employeeTreeGrid.setHeight(400); employeeTreeGrid.setShowOpenIcons(false); employeeTreeGrid.setShowDropIcons(false); employeeTreeGrid.setShowSelectedStyle(true); employeeTreeGrid.setShowPartialSelection(false); employeeTreeGrid.setCascadeSelection(false); employeeTreeGrid.setCanSort(false); employeeTreeGrid.setShowConnectors(true); employeeTreeGrid.setShowHeader(false); employeeTreeGrid.setLoadDataOnDemand(false); employeeTreeGrid.setSelectionType(SelectionStyle.SINGLE); employeeTreeGrid.setAutoFetchData(false); employeeTreeGrid.setOverflow(Overflow.AUTO); employeeTreeGrid.setShowAllRecords(true); employeeTreeGrid.setDataSource(EmployeeXmlDS.getInstance()); employeeTreeGrid.fetchData(); vlayout.addMember(employeeTreeGrid); vlayout.draw(); }
Comment