Class: DirectDOMAutomaticTable

.Presentation. DirectDOMAutomaticTable


new DirectDOMAutomaticTable()

Augmented.Presentation.DirectDOMAutomaticTable

Uses direct DOM methods vs cached HTML

Creates a table automatically via a schema for defintion and a uri/json for data

Source:
Example
var myAt = Augmented.Presentation.AutomaticTable.extend({ ... });
var at = new myAt({
    schema : schema,
    el: "#autoTable",
    crossOrigin: false,
    sortable: true,
    lineNumbers: true,
    editable: true,
    uri: "/example/data/table.json"
});

Extends