htmltable

the parser for HTML tables.

object htmltable;

Example

//..body part
<table id="films">
...
</table>
 
..//script part
dtable.data.driver = webix.DataDriver.htmltable;
dtable.parse("films");
// it is the same as
dtable.parse("films", "htmltable");

Related samples

Details

The object contains methods and properties for correct processing HTML tables.

See also
Back to top