Hello,I have a dilemma.I have on one aspx page a Search button that is outside of a warp. I also have an invisible button that is the modalpopup extender TargetControlID. That is also outside of this warp.I have an ordinary panel on the page that is hidden at first, because it is acting as a modal popup. This panel contains the warp, an ordinary dropdown, and an UltraWebGrid. When the Search button is clicked, the modal popup is shown (modalpopup.show()) and it does a search against a database. The grid is then filled with the data returned from the search. All of this works except when the modal popup is first displayed, I can't interact with the data in the grid. I can scroll through the data using the scroll bar however. Also, the alternating row formatting doesn't show up. If I click on the dropdown, which currently has no code behind it, the grid then becomes interactive and behaves and looks as expected. Why dosen't the grid become interactive when the modalpopup first shows up?Thanks
Well, I've tried using an UltraWebPanel and an UltraGroupBox, but still no luck. Perhaps I should attack this from another angle. Let's say I have one aspx page. This page should have a button, that when clicked, queries a database for a set of records. When this set of records is returned, a modalpopup panel should display the info in an UltraWebGrid. The user can then click (or dblClick) a row, the modal popup should dissapear and the record that was chosen should be displayed in a results grid on the same page. What would be the best approach to handling this scenario? Which controls would work best? Should I mix and match native .net controls with Infragistics' controls? Or should I use all Infragistics controls? I really wouldn't be in this situation if the warp panel or UltraGrid which ever is the culprit, would allow the user to click on a row when the popup first shows up. The only way It works now is if I click on a control that is in the popup panel. Doing this triggers the little spinning progress indicator and the grid lights up ready to go. This problem is really holding up production for this web page. I've tried using warp.refresh() but it doesn't work either. I'm really stuck here. Thanks for you help.