Bugs item #3020648, was opened at 2010-06-24 07:42
Message generated for change (Tracker Item Submitted) made by nobody
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=782464&aid=3020648&group_id=151897
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Nobody/Anonymous (nobody)
Summary: DropDownList content not updated
Initial Comment:
Hello, I put an athem dropdownlist control in an asp.net page.
In the code-behind, on a callback event coming from another control, I'm filling the content of the dropdownlist from a database query.
Everything's works well, but the content of the dropdownlist is not updated.
I had to put the dropdownlist into an anthem update panel to make it work.
Before:
<anthem:DropDownList ID="ddlMyDropDown" runat="server"></anthem:DropDownList>
Before II (with the AutoUpdate):
<anthem:DropDownList ID="ddlMyDropDown" runat="server" AutoUpdateAfterCallBack="true"></anthem:DropDownList>
Both "before" version didn't work (with or without the AutoUpdateAfterCallBack).
And the solution:
<anthem:Panel runat="server" ID="pnlMyUpdatePanel" AutoUpdateAfterCallBack="true">
<anthem:DropDownList ID="ddlMyDropDown" runat="server">
</anthem:DropDownList>
</anthem:Panel>
Then it works perfectly.
Hope this will maybe help you!
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=782464&aid=3020648&group_id=151897
|