Announcement

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

    12.0p Editable ListGrid with non-editable Binary field display bug

    Hi Isomorphic,

    please see this modified testcase (v12.0p_2019-11-27).
    On first double click into the ListGrid, a native File chooser button appears. This button is unexpected, as the field is non-editable.
    For subsequent edits, this is working as expected.

    Tested with Chromium 78.0.3904.70 and FF26 under Win 10.

    Click image for larger version

Name:	Editable ListGrid binary field.png
Views:	116
Size:	16.3 KB
ID:	260198

    Code:
    isc.ListGrid.create({
        ID: "listGrid",
        width:500, height:224, alternateRecordStyles:true,
        dataSource: customBinaryField,
        selectionType: "single",
    [B]canEdit:true[/B],
        autoFetchData: true,
        fields:[
            {name:"id", width:100},
            {name:"file", width:380, [B]canEdit:false[/B]}
        ],
        recordClick: function(viewer, record, recordNum, field, fieldNum, value, rawValue) { 
            formEdit.editSelectedData(listGrid);
            formView.editSelectedData(listGrid);
        }
    });
    Best regards
    Blama

    #2
    This one's been fixed for builds dated December 1 and later.

    Comment


      #3
      Hi Isomorphic,

      this one is fixed for me using v12.0p_2019-12-04.

      Best regards
      Blama

      Comment

      Working...
      X