Hi,
we encountered a bug regarding the escapeHTML property of an editable ListGridField: After editing is completed, the browser interprets the content and executes javascript, even escapeHTML is set to true. You can reproduce using the following code:
Its also reproducable in SmartClient_v111p_2019-10-06_Pro
Best regards
we encountered a bug regarding the escapeHTML property of an editable ListGridField: After editing is completed, the browser interprets the content and executes javascript, even escapeHTML is set to true. You can reproduce using the following code:
Code:
isc.ListGrid.create({ ID: "listGrid", width:500, height:224, alternateRecordStyles:true, fields:[ {name:"string", title:"Code", canEdit: true, escapeHTML: true, length: 8000} ], data: [{string: "<strong>HTML</strong>"}] })
Best regards
Comment