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
I'm using ultraWebGrid 11.1. What is yours? Can you post your code? I'll try plugging it into my project if possible.
hello people...
i dont have <ClientSideEvents MouseOverHandler..... On grid....
=oC
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
Sorry for inconsistent grid names...function should be:
function myGrid_MouseOverHandler(gridName, cellId, objectType)
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 }