forked from 0x2620/oxjs
fix column class name for table list cells
This commit is contained in:
parent
36bb42e7bd
commit
1b2c83e121
2 changed files with 7 additions and 4 deletions
|
|
@ -536,7 +536,7 @@ Ox.TableList = function(options, self) {
|
|||
$cell = $('<div>');
|
||||
}
|
||||
$cell.addClass(
|
||||
'OxCell OxColumn' + Ox.toTitleCase(v.id)
|
||||
'OxCell OxColumn' + v.id[0].toUpperCase() + v.id.slice(1)
|
||||
+ (clickable ? ' OxClickable' : '')
|
||||
+ (editable ? ' OxEditable' : '')
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue