hello,
I have a page that has a google map on top, and a pq grid on bottom.
the markers on the map all have corresponding entries in the grid.
when a google map marker is clicked, I do this to highlight the corresponding pq grid row:
$("#gridContainer").pqGrid("setSelection", null);
$("#gridContainer").pqGrid("setSelection", { rowIndx: (this.Assignments[0].DisplayNumber - 1) });
alternatively, when a pq grid row is clicked, I have a custom function that simulates a map marker click / highlights the corresponding google map icon.
the problem is, when I use (the above code for pq grid) to highlight the grid row, it commands focus.
this is not a good thing since the map takes up most of the page, and if the user is looking at the map and clicks an icon,
the page scrolls down / away from the map to the pq grid to honor its focus.
how can I prevent this focus on row selection from happening?
many thanks!
btw - this plugin ROCKS!!!! NICE WORK!!!!!!!