1
Help for ParamQuery Pro / Re: Getting a list of all checked rows
« on: April 10, 2015, 12:23:09 am »
Thanks.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
function selectGridElements($grid, selector){
// Select only the elements that are part of this grid (exclude elements that are in nested grids)
var depth = $grid.children().first().parents(".pq-grid").length;
return $grid.find(selector).filter(function(){
return $(this).parents(".pq-grid").length == depth;
});
}