Erx_VB.NExT.Coder
Erx_VB.NExT.Coder

Reputation: 4856

Can you get UpdatePanel working with RichDataControls?

is it possible? say with the listview?

Upvotes: 1

Views: 83

Answers (2)

Erx_VB.NExT.Coder
Erx_VB.NExT.Coder

Reputation: 4856

This is the relevant part of code

<asp:UpdatePanel 
    ID="upComments" runat="server" 
    UpdateMode="Conditional" ChildrenAsTriggers="true">

<ContentTemplate>
    <asp:ListView ID="lvComments" runat="server" DataSourceID="dsComments">

Upvotes: 0

Jose Basilio
Jose Basilio

Reputation: 51468

You need to set the ChildrenAsTriggers attribute to true in order for this work as you expect.

Upvotes: 1

Related Questions