add

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

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

Example

function addData() {
    $$("data").add({
        title: document.getElementById("title").value,
        year: document.getElementById("year").value
    },0);
}

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 mvc library and page of javascript graphing library product.