vote up 0 vote down star

I have an UpdatePanel with two ListBoxes in them. What I want to happen is that when the page loads the first ListBox fills with some data. When the user selects and item the second ListBox should be populated with the pertinent data.

Here is what happens, the first ListBox is filled with data, the user selects an item and the SelectedIndexChanged event fires, but the selection gets cleared before method can see which item was selected?

<asp:UpdatePanel ID="UpdatePanel2" runat="server">
<ContentTemplate>
    <table class="listBoxTable">
    	<thead>
    		<tr>
    			<th>
    				Please select a magazine to add articles to.</th>
    		</tr>
    	</thead>
    	<tr>
    		<td>					
    			<asp:ListBox ID="lbMagazines" runat="server" Height="300px" Width="250px" 
    				onselectedindexchanged="lbMagazines_SelectedIndexChanged" DataTextField="Title" 
    				DataValueField="Id" AutoPostBack="True">

    			</asp:ListBox>
    		</td>
    		<td>					
    			<asp:ListBox ID="lbIssues" runat="server" Height="300px" Width="250px" 
    				Enabled="False" DataTextField="Title" DataValueField="Id">

    			</asp:ListBox>
    		</td>
    	</tr>
    </table>
</ContentTemplate>
</asp:UpdatePanel>
flag

Can you provide the code behind that you are using to populate the listboxes, handle selectedindexchanged and the page_load? – achinda99 Feb 17 at 20:41

3 Answers

vote up 1 vote down check

Based on the information provided, my initial thoughts are that you are repopulating lbMagazines on page load, so that by the time it gets to the event, the selecteditem/index is cleared.

link|flag
Wow, what a newbie mistake. I didn't think the Page_load event would fire on AJAX call backs. Thanks a bunch. – jhunter Feb 17 at 20:55
Whats pretty neat is that next to everything runs as if its a postback, even though its an ajax call. However, only controls within the update panel will update (unless you use javascript). – achinda99 Feb 17 at 20:59
vote up 2 vote down

Sounds like your initial list binding code isn't wrapped in a Page.IsPostBack.

If (!Page.IsPostBack)
{
    //List bind code
}

When that's the case the original list will keep rebinding like you're seeing.

link|flag
vote up 1 vote down

If only the second listbox's contents needs to change then it would be more appropriate to put the first listbox outside the UpdatePanel and use triggers property:

<Triggers>
    <asp:AsyncPostBackTrigger ControlID="lbMagazines" EventName="OnSelectedIndexChanged" />
</Triggers>

This way only the second listbox will be updated when you perform your AJAX postback.

link|flag
Is using triggers more efficient or having both controls in the content template? I was never really sure of that. – achinda99 Feb 17 at 20:47
Using triggers is more efficient because only the part of your page that is inside the UpdatePanel will get updated, so the less controls you have less inside the less data will be exchanged between the client and the server. – Darin Dimitrov Feb 17 at 21:59

Your Answer

Get an OpenID
or

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