Rank: Newbie Groups: Member
Joined: 1/9/2008 Posts: 2
|
On my page I have an AJAXUploader and a few ListBox controls. The ListBox Controls are in their own AJAX update panels. When the AJAXUploader is present on the page, the ListBox controls force a full post back when the selected index is changed. When the AJAXUploader is not preset the ListBox controls do a partial page update as expected. I have the AutoPostBack = True of the ListBox. The uploader is not located in the ListBox’s UpdatePanel.
//Uploader <eo:AJAXUploader ID="AJAXUploader1" runat="server" TempFileLocation="~/ul_temp" Width="250px"> </eo:AJAXUploader>
//UpdatePanel <asp:UpdatePanel ID="UpdatePanel3" runat="server"> <ContentTemplate> <asp:ListBox ID="ListBox1" runat="server" AutoPostBack="True" OnSelectedIndexChanged="ListBox1_SelectedIndexChanged"> <asp:ListItem>Test1</asp:ListItem> <asp:ListItem>Test2</asp:ListItem> <asp:ListItem>Test3</asp:ListItem> <asp:ListItem>Test4</asp:ListItem> </asp:ListBox><br /> <br /> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label><br /> </ContentTemplate> </asp:UpdatePanel>
Any Ideas?
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi,
Please check your version. We created a blank page and put the two code snippets into it, then put the following code in handler ListBox1_SelectedIndexChanged:
Label1.Text = ListBox1.SelectedItem.ToString()
And it does partial postback as expected. We tested on our latest build (see your private messages for download link). So please try the same and let us know how it goes.
Thanks
|
Rank: Newbie Groups: Member
Joined: 1/9/2008 Posts: 2
|
The New version fixed the problem
Thanks,
LM Ginn
|