Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    Issues with the newest firefox

    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:

    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();
    
    }

    #2
    We see the problem and a solution is in progress.

    Comment


      #3
      A fix addressing the FF58 issue has been applied to SGWT 4.1p/SC 9.1p and newer releases, effective of today's nightly builds, dated 2018-02-08.

      Comment


        #4
        I can confirm that the bug was fixed, thanks!

        Comment

        Working...
        X