Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
133
Events.MouseUp is null or not an object
posted

Hi,

I have a grid, on Cell click Iam trying to switch tab ( ultrawebtab) on the parent page.

function

 

ListGrid_CellClickHandler(gridName, cellId, button){

 

var cell = igtbl_getCellById(cellId);

var row = cell.getRow();

 

IDOne = row.getCell(8).getValue();

IDTwo = row.getCell(9).getValue();

parent.switchTab(IDOne,IDTwo);

}

However Iam getting the below error  message " Events.MouseUp is null or not an object"

from the

function

 

igtbl_cellClickUp(evnt, gn)

and code is

if

 

(igtbl_fireEvent(gn, gs.Events.MouseUp, "(\"" + gn + "\",\"" + id + "\"," + igtbl_button(gn, evnt) + ")") == true)

Why am I getting a mousup event though i have not defined one in the grid.

Any help is welcome.

Thanks in advance