vote up 3 vote down star
1

I have rather a complex UI page with several UpdatePanels nested. All of them are set to UpdateMode = "Conditional"

I have a listbox outside all the updatepanels. It's strange how there's a flicker on these listboxes when any buttons within the UpdatePanels are clicked.

My understanding was if the mode is conditional, this should not be happening.

Any ideas on where to start troubleshooting?

flag

38% accept rate
I've experienced this before on an unpatched version of IE6 (I don't think the fact that it was unpatched was the problem, I couldn't figure out what the problem was at the time). What browser(s) are you experiencing this in? – Russ Cam Apr 11 at 23:36

2 Answers

vote up 1 vote down

I'm not sure, but the browser might be doing this when it's re-rendering things within the other UpdatePanels. I wonder if you put everything inside a "global" UpdatePanel if this behavior will stop.

link|flag
I tried that with no luck :( – DotnetDude Apr 12 at 3:09
vote up 1 vote down

On the parent UpdatePanels, set the ChildrenAsTriggers property to False and also look at using the Triggers element of the UpdatePanels you want to update to specify your triggers explicitly.

<asp:UpdatePanel ID="myUpdatePanel" runat="server" ChildrenAsTriggers="false" UpdateMode="Conditional">
        <ContentTemplate>

        </ContentTemplate>
        <Triggers>
            <asp:AsyncPostBackTrigger ControlID="btnTrigger" />
        </Triggers>
    </asp:UpdatePanel>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.