I'm getting not ideal results when an UltraWebGrid control is contained inside a AJAX UpdatePanel. The formatting and most events are lost. I can't click on a row anymore and when I look at the error console in Firefox I see'igtbl_tableMouseMove'/'igtbl_cellMounsMove' is not defined. I would use theWebAsyncRefresPanel but I lose the functionality of the UpdateProgress control in the AJAX controls. Any information would be helpful.
Thanks.
What version of the toolset are you using? I don't recall off the top of my head when we started providing support for WebGrid in UpdatePanel, but it's been there for a while.
Are you using the AJAX functionality of WebGrid? If so, then you won't be able to use UpdatePanel, because they use two different AJAX frameworks that can't be made to be compatible with each other. You'd either have to replace your UpdatePanel with WARP, or turn off the grid's built-in AJAX capabilities.
Thanks for the reply Vince. I am using Assembly="Infragistics2.WebUI.UltraWebGrid.v7.3, Version=7.3.20073.38. After confirming from your message that it 'should' work I started testing some things. What it came down to is that I had a user control (.ascx) before the ScriptManager in the form and appartently that was causing all functionality and layout of the webgrid to be useles. I moved the ScriptManager to the top of the form and everything is working as designed.
Thanks!!!