Announcement

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

    ListGrid Expand error

    When a ListGrid is in edit mode, and you click on the expand component, it gives you an error. See attachment.

    I'm using smartGWT 2.2 in FireFox 3.6.8 on Ubuntu 9.10

    Code:
        TestDS dataSource = TestDS.getInstance();
    
        ListGrid listGrid = new ListGrid();
        listGrid.setWidth(600);
        listGrid.setHeight(500);
        listGrid.setCanExpandRecords(true);
        listGrid.setExpansionMode(ExpansionMode.DETAILS);
        listGrid.setAutoFetchData(true);
        listGrid.setDataSource(dataSource);
        listGrid.setCanEdit(true);
        listGrid.setListEndEditAction(RowEndEditAction.NEXT);
    
        listGrid.draw();
    Attached Files

    #2
    Can someone confirm that this is a problem with smartGWT, or a problem on my side ?

    Comment


      #3
      Are you seeing this in the latest nightly build as well? See this FAQ entry on what information to provide.

      Comment


        #4
        Confirmation, I get this error with the latest nightly build.

        Comment

        Working...
        X