Samples
Forum
Support
Documentation
add
addCellCss
addCss
addRowCss
adjust
adjustColumn
adjustRowHeight
attachEvent
bind
blockEvent
callEvent
checkAll
checkItem
clearAll
clearCss
clearValidation
close
closeAll
collectValues
columnId
copy
count
define
destructor
detachEvent
disable
eachColumn
eachRow
edit
editCancel
editCell
editColumn
editNext
editRow
editStop
enable
exists
exportToExcel
exportToPDF
filter
filterByAll
find
focusEditor
getBranchIndex
getChecked
getChildViews
getColumnConfig
getColumnIndex
getEditState
getEditor
getEditorValue
getFilter
getFirstChildId
getFirstId
getFormView
getHeaderContent
getHeaderNode
getIdByIndex
getIndexById
getItem
getItemNode
getLastId
getNextId
getNextSiblingId
getNode
getOpenItems
getPage
getPager
getParentId
getParentView
getPrevId
getPrevSiblingId
getScrollState
getSelectedId
getSelectedItem
getState
getText
getTopParentView
getVisibleCount
group
hasCss
hasEvent
hide
hideColumn
hideOverlay
isBranch
isBranchOpen
isChecked
isColumnVisible
isEnabled
isVisible
load
loadBranch
loadNext
locate
mapCells
mapEvent
markSorting
move
moveBottom
moveColumn
moveDown
moveSelection
moveTop
moveUp
open
openAll
parse
refresh
refreshColumns
refreshFilter
refreshHeaderContent
registerFilter
remove
removeCellCss
removeCss
removeRowCss
render
resize
scrollTo
serialize
setColumnWidth
setPage
setRowHeight
setState
show
showCell
showColumn
showColumnBatch
showItem
showItemByIndex
showOverlay
sort
sync
unbind
unblockEvent
uncheckAll
uncheckItem
ungroup
updateItem
validate
validateEditor
Start
API Reference
ui.treetable
Methods
removeCellCss
remove css class from the cell of datatable
void
removeCellCss
(
string
id
,
string
name
,
string
css_name
);
Parameters
id
string
row id
name
string
column name
css_name
string
name of css class to remove
See also
api
addCellCss
addRowCss
removeRowCss
articles
Styling
Example
$$
(
"mytable"
)
.
removeCellCss
(
152
,
"year"
,
"some_style"
)
;
Back to top