﻿// JScript File

function UG2_ClickCellButtonHandler(gridName, cellId) {
    var cell = igtbl_getCellById(cellId);
    var address = cell.Row.getCell(4).getValue();
    window.open('http://maps.google.com/maps?hl=en&q=' + address, 'Map', '_blank,toolbar=yes,location=yes,directories=yes,status=yes,menubar=yes,scrollbars=yes,copyhistory=yes,resizable=yes');
}

function move()
{
 window.scrollTo(0,0);
  
}


function Expand_Grid()
{

var grid = igtbl_getGridById('UG2'); 
var oRows = grid.Rows;

for(i=0; i < oRows.length; i++) {
                oRow = oRows.getRow(i);
                oRow.setExpanded(true);
//                if(oRow.ChildRowsCount > 0) {
//                        var oChildRows = oRow.Rows;
//                        for(j=0; j < oChildRows.length; j++) {
//                                oChildRow = oChildRows.getRow(j);
//                                oChildRow.setSelected(true);
//                        }
//                }

        }  


 
}

function Collapse_Grid()
{

var grid = igtbl_getGridById('UG2'); 
var oRows = grid.Rows;

for(i=0; i < oRows.length; i++) {
                oRow = oRows.getRow(i);
                oRow.setExpanded(false);
//                if(oRow.ChildRowsCount > 0) {
//                        var oChildRows = oRow.Rows;
//                        for(j=0; j < oChildRows.length; j++) {
//                                oChildRow = oChildRows.getRow(j);
//                                oChildRow.setSelected(true);
//                        }
//                }

        }


 
}




