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.

Best regards
Blama
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.
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);
}
});
Blama
Comment