add

добавляет элемент в DataStore

id add(object obj, [number index] );
objobjectобъект элемента
indexnumberпозиция элемента
idID элемента

Example

dtable.add({
    name:"Best film ever"
    rank:1
});

Related samples

Details

Объект может содержать любые свойства:

$$('mygrid').add({
    some:"some string",
    other:123,
    complex:{
        contain:"any",
        content:"inside"
    }
}, 0);
See also
Наверх
If you have not checked yet, be sure to visit site of our main product Webix best ui framework and page of javascript datatables product.