Hi,

In the current project I am working on there a lot of panels and grids in most of the pages. Each page also has a header panel where the user selects his search/transaction preferences.

Based on this couple of panels are hidden or collapsed using an AJAX event. Can't use Listeners because we need to hit the database to figure out what needs to be done, and another practical issue my team-mates are not really comfortable writing JS code.

The problem is, after the postback is completed, the entire lot of Collapse and Hide functions are fired and all sorts of panels are flying across the page.

What can I do to make this a bit more smooth.

Secondly, sometimes if there is a messagebox being shown from code behind, the message box appears even before the Loading mask is hidden. How do I avoid that? My guess is to use the Success and Failure listeners to popup the message box.

Raghu