Hi Jason,
I can suggest something that can get you get started or provide some
additional ideas - you can handle the CellClick client side event
handler and get the column / key / row and use it to open a new popup
(or use this information in some way) to filter the second grid,
e.g.
function UltraWebGrid_CellClickHandler(gridName, cellId, button)
{
col=igtbl_getColumnById(cellId);
cell=igtbl_getCellById(cellId);
grd=igtbl_getGridById(gridName);
if(col.Key == 'CellKeyID')
{
window.open('popup.aspx?id=' + 0 + '&GridID=' +
grd.ClientID,'user','location=0,status=0,scrollbars=no,height=550,width=510');
}
}