Looks like we can't reproduce the issue or there's a problem in the test case provided.
-
Sencha Premium Member
Checkbox selection html encoded
Ext version tested:
Description: I would like to html encode all columns, therefore I use the default columns config,
but the checkbox column is not visible, because it is also encoded!
Test case
https://fiddle.sencha.com/#fiddle/kb6
-
Thanks for the report! I have opened a bug in our bug tracker.
-
This isn't a bug. The check column renderer also allows itself to be overridden, sometimes users want to modify it as well. In this case you're overriding the default and causing the issue.
Instead, you may want to:
Code:
Ext.define('HtmlColumn', {
extend: 'Ext.grid.column.Column,
alias: 'widget.htmlcolumn',
renderer: Ext.util.Format.htmlEncode
});