Check documentation for the latest version of dhtmlxSuite dhtmlXList API DHTMLX Docs

dhtmlXList API

Methods
add adds a data item to the dataview
attachEvent
changeId changes the id of an item
clearAll removes all data from DataView and repaints the component
copy creates a copy of an item
customize customizes the currently active template by replacing default properties with the one from provided object
dataCount returns the total count of items in the dataview
define configures some mode of DataView
destructor destructs the DataView object
detachEvent
edit switches the specified item to the edit state
exists returns true if the item with the defined ID already exists
filter filters DataView by the provided parameters
first returns the ID of the first item (item with the index == 0)
get gets the object of the data item with the specified id
getSelected returns the currently selected ID
idByIndex returns the ID of the item with the specified index
indexById returns the index of the item with the specified ID
isEdit gets the status of the edit operation
isSelected returns true, if an item is selected
last returns the ID of the last item (the item with the index == dataCount-1)
load
locate returns an item's ID by HTML event (checks if any item is in the area of HTML event)
move moves an item to the defined position
moveBottom sets an item as the last item in the view
moveDown changes the index of an item by moving it to the end of the view by the defined count of steps
moveTop sets an item as the first item in the view
moveUp changes the index of an item by moving it to the start of the view by the defined count of steps
next returns ID of the next item (item with the index == current + 1)
parse parses an object or a string and fills the dataview with the parsed items
previous returns ID of the previous item (item with the index == current - 1)
refresh repaints an item or the whole dataview
remove removes a data item from the dataview
select marks an item as selected
selectAll selects all items in the dataview
serialize serializes component back to json
set associates the hash of data with some ID
show adjusts the scrollbars of dataview to make the item in question visible
sort adds any user-defined handler for available events
stopEdit if there was some item in the edit state, this command switches it back to the normal state
unselect removes selection from a certain item
unselectAll removes selection from all the items in the dataview
update updates a particular item in the dataview
Events
onAfterAdd fires when item adding is finished
onAfterDelete fires after item deleting is finished
onAfterDrop fires when the drag-n-drop operation is finished
onAfterEditStart fires when the editor is ready for data input
onAfterEditStop fires when the editor is closed
onAfterRender called after view was repainted
onAfterSelect fires when the selection of an item is finished
onBeforeAdd fires before item adding is initiated
onBeforeContextMenu called on the right mouse click
onBeforeDelete fires before item deleting is initiated
onBeforeDrag fires before the drag operation started
onBeforeDragIn fires before an item is dragged to another potential target
onBeforeDrop fires before an item is dragged to another target and the mouse button is released
onBeforeEditStart fires before the editing process is initialized
onBeforeEditStop fires before editor closing is initialized
onBeforeRender fires before repainting the dataview
onBeforeSelect fires before selection of an item is started
onDataRequest called when component issues dynamic request for a data
onDragOut fires when an item is dragged out of a potential target
onEditKeyPress fires when a key is pressed while the editor is active
onItemClick fires when an item is clicked
onItemDblClick fires when an item is double clicked
onItemRender fires before rendering a separate item
onMouseMove fires when the mouse pointer is moved over an item
onMouseMoving fires when the mouse pointer is moved over a dataview
onMouseOut fires when the mouse pointer is moved out of the dataview, or out of some item in the dataview
onSelectChange fires when the selection is changed
onXLE fires when the data loading is finished and a component or data is rendered
onXLS fires when XML loading started
Other
$view top html node of component
Back to top