Hi,
I am using UltrwebGrid to display records. I am loading the records to another window for print purpose.
the onmouseup="igtbl_tableMouseUp......is creating script error.
this script error occours when the mouse pointer is moved towards scroll bar.
Is there any method that i can remove the :
onmouseup="igtbl_tableMouseUp and onmousemove="igtbl_tableMouseMove
Hello i have the same problem..... i can't debug my application
igtbl_headerMouseMove(event,"Grid2") ( error: Object Expected)
so my Version=5.2.20052.1070 running on windows 7 professional, using
Visual studio 2008 professional
and i have the folder ig_common\20052\Scripts en the same folder for my application
PLEASE HELP ME!!! i have lost 5 days ...so i hate infragistics now!! LOL =OD
Not sure if this might help, but we have a mouseover event configured like this on the grid:
1. on grid:
<ClientSideEvents MouseOverHandler="myGrid_MouseOverHandler"/>
2. in BLOCKED SCRIPTfunction grdStatus_MouseOverHandler(gridName, cellId, objectType) {
var cell = igtbl_getCellById(cellId);
var row = igtbl_getRowById(cellId);
//do logic }
Sorry for inconsistent grid names...function should be:
function myGrid_MouseOverHandler(gridName, cellId, objectType)
And it should work similarly for mouseup as mouseover.
http://help.infragistics.com/Help/NetAdvantage/ASPNET/2011.1/CLR4.0/html/Infragistics4.WebUI.UltraWebGrid.v11.1~Infragistics.WebUI.UltraWebGrid.ClientSideEvents~MouseUpHandler.html
http://help.infragistics.com/Help/NetAdvantage/ASPNET/2011.1/CLR4.0/html/Infragistics4.WebUI.UltraWebGrid.v11.1~Infragistics.WebUI.UltraWebGrid.ClientSideEvents~MouseOverHandler.html