Announcement

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

    grid.implicitCriteria not respected when updating grids with same dataSource

    SmartClient Version: v11.0p_2016-08-04/Enterprise Development Only (built 2016-08-04)

    Chrome on OSX

    Please modify the #databoundFetch sample like this:
    Code:
    isc.ListGrid.create({
        ID: "countryList",
        width:500, height:224, alternateRecordStyles:true,
        canEdit:true,
        dataSource: worldDS,
        autoFetchData:true,
        implicitCriteria:{continent:'North America'},
        fields:[
            {name:"countryCode"},
            {name:"countryName"},
            {name:"capital"},
            {name:"continent"}
        ]
    });
    
    isc.ListGrid.create({
        ID: "countryList2",
        top:250,
        canEdit:true,
        width:500, height:550, alternateRecordStyles:true,
        dataSource: worldDS,
        autoFetchData:true,
        implicitCriteria:{continent:'Australia/Oceania'},
        fields:[
            {name:"countryCode"},
            {name:"countryName"},
            {name:"capital"},
            {name:"continent"}
        ]
    })
    then edit a record of the first grid, ie modify a 'capital' field with a dummy value. You'll see that the edited record is integrated in both grids resultSets.

    #2
    The nightly build of today will contain a fix for this bug.

    Comment


      #3
      hi how to implement login form with out using datasource in smart gwt.

      Comment


        #4
        Originally posted by Isomorphic View Post
        The nightly build of today will contain a fix for this bug.
        SmartClient Version: v11.0p_2016-08-08/Enterprise Development Only (built 2016-08-08)

        I can confirm it's fixed, thank you very much

        Comment

        Working...
        X