getSpanNode

returns the HTML element of a spanned cell

HTMLElement getSpanNode(objectid);
idobjectthe id of the cell that starts the span
HTMLElementan HTML element

Example

$$("datatable").getSpanNode({row:2, column:"title"});

Details

A cell id is an object with the following properties:

  • row {string, number} row id
  • column {string, number} column id
Back to top