I wanted to get the value of a selected view like that in grid.
ex. grid_1.cells(id, 1).getValue();
How do I do this in dataview?
data_view_1.cells???(id, property).getValue();
I wanted to get the value of a selected view like that in grid.
ex. grid_1.cells(id, 1).getValue();
How do I do this in dataview?
data_view_1.cells???(id, property).getValue();
Do you mean pages ot items?
If items:
var data = view.get(view.getSelected(id));
Or
view.attachEvent("onItemClick", function (id, ev, html){
var data = view.get(id);
return true;
});