gets the object of the data item with the specified id
id | string|number | id of the item in question |
object | the object of a data item |
var data = myList.get(id);
alert(data.Version);
data.Version = 2; // beware that you need to force the refresh
Back to top