добавляет элемент в DataStore
| obj | object | объект элемента | 
| index | number | позиция элемента | 
| id | ID элемента | 
function addData() {
    $$("data").add({
        title: document.getElementById("title").value,
        year: document.getElementById("year").value
    },0);
}
Объект может содержать любые свойства:
$$('mygrid').add({
    some:"some string",
    other:123,
    complex:{
        contain:"any",
        content:"inside"
    }
}, 0);