I am trying to create an Observable of onSelectRow events in jqGrid using the syntax below:
grid.jqGrid().toObservable("onSelectRow").Select(function (event) {
return alert($(event.target).val());
});
Nothing seems to be happening. Most examples bind to simple events like click in documentation. I cannot find any complex implementation examples. How can this achieved?