I have an UltraWebGrid inside of a WARP and I want it to refresh the contents of an UpdatePanel when it does an Async postbackbut it doesn't work. I also have a button inside the WARP which does cause the UpdatePanel to refresh?
Any ideas??
Having both a WARP and an UpdatePanel on the same page is likely to have unpredictable and undesirable effects. Nesting one inside the other likely compounds this issue.
I understand that but what i dont understand is why if i put a button and a grid in a warp and then the warp in an updatepanel, when i click the button the updatepanel refreshes the other panels but clicking the grid doesnt?
I suggest against mixing either the grid's AJAX functionalty or WARP with Microsoft ASP.NET AJAX Extensions. Both WARP and WebGrid use a different AJAX architecture than ASP.NET AJAX Extensions, and the two cannot be made to work together at the same time.
I suggest you either turn off the grid's AJAX functionality and replace WARP with UpdatePanel, if you want to continue using ASP.NET AJAX Extensions, or replace the UpdatePanel with WARP if you want to instead remove ASP.NET AJAX Extensions.
To my knowledge, WebGrid does not provide a way to refresh another control during its own asynchronous postback.