encode more html entities
This commit is contained in:
parent
fea12d9f57
commit
f173d50902
6 changed files with 14 additions and 13 deletions
|
|
@ -13,7 +13,9 @@ oml.ui.listView = function() {
|
|||
Ox.isArray(key.type) ? key.type[0]: key.type
|
||||
) > -1 ? 'left' : key.type == 'list' ? 'center' : 'right',
|
||||
defaultWidth: key.columnWidth,
|
||||
format: key.format,
|
||||
format: function(value) {
|
||||
return Ox.encodeHTMLEntities(key.format(value));
|
||||
},
|
||||
id: key.id,
|
||||
operator: key.operator,
|
||||
position: position,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue