Announcement

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

    Regression in SelectItem with hidden columns

    Hi Isomorphic,

    I'm relying on hidden column in selectItems in order to pass ID-data from the selected record.
    It seems there was an regression here in the last days (IMHO it worked as before using v11.1p_2017-10-05, now I'm using v11.1p_2017-10-10).

    See this modified testcase (v11.1p_2017-10-10):
    Code:
    isc.DynamicForm.create({
        ID:"testForm",
        width: 550,
        numCols:4,
        fields : [
        {
            name: "filteredSelect", title: "Item (Select)", editorType: "SelectItem",
            optionDataSource: "supplyItem", wrapTitle: false,
            displayField:"itemName", valueField:"SKU",
            pickListWidth:300,
            pickListProperties: {
                showFilterEditor:true
            },
            pickListFields:[
                {name:"SKU", [B]hidden:true[/B]},
                {name:"itemName"}
            ]
        }
        ]
    });
    The "SKU"-field is shown anyway and there is some issue with the filter for the "Item"-field:
    Click image for larger version  Name:	HiddenFieldSelectItemProblem.PNG Views:	1 Size:	4.8 KB ID:	249610

    The same (showing hidden fields) is happening in my application as well.

    Best regards
    Blama

    #2
    Hello Blama, may be related to https://forums.smartclient.com/forum...wif-on-a-field

    Comment


      #3
      Hi claudiobosticco,

      I don't know. I do see the issue with v11.1p_2017-10-10 and did not see it with v11.1p_2017-10-05.
      But perhaps the fix for your issue did break this, though. Isomorphic ?

      Best regards
      Blama
      Last edited by Blama; 11 Oct 2017, 03:47. Reason: Typos

      Comment


        #4
        This issue has been resolved starting with builds on Oct 11. It was indeed a regression from the showif issue and both should be working.

        Comment


          #5
          Hi Isomorphic,

          I can confirm it's fixed in the showcase sample from #1 using v11.1p_2017-10-11.
          I strongly assume it will work in my application as well then.

          Thank you & Best regards
          Blama

          Comment

          Working...
          X