i'm new to jquery & jquery controls. I was trying to get a view which got tree and grid. I manged to add tree . I need to get data from service ( which in an assembly) and display it in grid. This action need to be perfomed on tree node selection change event.
can you please give me sugession / samples for proceeding such use case?
thanks in advance.
Hello Binu,
I am just following up to see if you have any assistance with this matter.
Hello there,
Basically you would need to subscribe to the selectionChanged or nodeClick events:
$('#treeID').bind('igtreeselectionchanged, function (event, ui) {
// Perform a request
// Additional logic
});
You can also have a controller action which would be the URL for each node with appropriate parameters and this action would simply return a new view with a grid on it.