forked from 0x2620/oxjs
properly escape user names and list names
This commit is contained in:
parent
e282a3a9e9
commit
68ca199ae3
6 changed files with 18 additions and 6 deletions
|
|
@ -19,6 +19,7 @@ Ox.TextList <f:Ox.Element> TextList Object
|
|||
operator <s> default sort operator
|
||||
title <s> ...
|
||||
titleImage <s> ...
|
||||
unformat <f> Applied before editing
|
||||
unique <b> If true, this column acts as unique id
|
||||
visible <b> ...
|
||||
width <n> ...
|
||||
|
|
@ -840,7 +841,7 @@ Ox.TextList = function(options, self) {
|
|||
$input = Ox.Input({
|
||||
autovalidate: column.input ? column.input.autovalidate : null,
|
||||
style: 'square',
|
||||
value: html,
|
||||
value: column.unformat ? column.unformat(html) : html,
|
||||
width: width
|
||||
})
|
||||
.bind({
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue