Announcement

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

    3 forms, item bound to same dataSource and def. value: middle form doesn't show value

    SmartClient Version: v11.0p_2016-11-25/Enterprise Development Only (built 2016-11-25)
    SmartClient Version: SNAPSHOT_v11.1d_2016-11-25/Enterprise Development Only (built 2016-11-25)

    Chrome, Safari on OSX El Capitan

    Hello, please try this test case:

    Code:
    isc.defineClass("TestForm", "DynamicForm").addProperties({
        top: 0,
        width: 500,
        numCols: 4,
        autoDraw: true,
        fields: [
            {
                name: "itemName1", title: "Item",
                optionDataSource: "supplyItem", displayField: "itemName", valueField: "itemID",
                defaultValue: 1,
                editorType: "SelectItem",
                visible: true,
                required: true
            }
        ]
    });
    
    isc.TestForm.create({
      top:0
    })
    
    
    isc.TestForm.create({
      top:40
    })
    
    
    isc.TestForm.create({
      top:80
    })
    you'll see that the select in the second form remains with the 'Loading...' message displayed.

    #2
    please note that seems similar to this http://forums.smartclient.com/forum/...play-the-value
    in the sense that cachePickListResults: false is a valid workaround

    Comment


      #3
      Thanks for the test case. We're making a change to address this.


      Please try the next nightly build (11.0 and 11.1 branches), dated Nov 29 or above

      Regards
      Isomorphic Software

      Comment


        #4
        SmartClient Version: SNAPSHOT_v11.1d_2016-11-30/Enterprise Development Only (built 2016-11-30)

        verified, thank you very much.

        Comment

        Working...
        X