i have created a parent div which has multiple child div with one of the grid column value. now when i click in any one of the child div i should makefilter in grid and shows those related rows how do i achieve this scenario
function sumaryclicked(){ ??????? }I think that what you are describing is better suited to the filterBy method.
when the user clicks on the child div you can pickup the value in that div and filter the parent grid using:
parentgrid.filterBy(column,value);
remember that the first column in the grid is 0 so to filter all the books in a list where the second column is the author surname you would use
booksgrid.filterBy(1,“Dickens”);