I am current trying to use an UpdatePanel containing two ASPxGridView controls and a small form. However, I am running into a few issues. I have configured 2 of these gridviews with the same settings, with respective data sources and events. Where this breaks is when I am using the 'SelectionChanged' event of the gridviews inside the update panel as a trigger to do an AsyncPostback.
The real mystery, is when I have one of the gridviews 'EnableCallBacks' property set to 'True', so that it won't use the update panel, the other one updates perfect. However, if I set both of these properties to false, allowing both of them to update the panel, it breaks. But, it breaks in a weird way. When I go in and select anything it just locks up and doesn't update anything for 90 seconds(which I htink is the default timeout).
Is there any reason you cannot have 2 ASPxGridviews in the same update panel with the respective triggers set to update the panel when the 'OnSelectionChanged' event is fired? If not, are there any other settings other than 'SettingsBehavior-ProcessSelectionChangedOnServer' that need to be setup for the gridviews to work properly?