DropdownList.selectedIndex always 0 (yes, I do have !isPostBack) - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T15:52:13Zhttp://stackoverflow.com/feeds/question/312735http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/312735/dropdownlist-selectedindex-always-0-yes-i-do-have-ispostback2DropdownList.selectedIndex always 0 (yes, I do have !isPostBack)Israr Khan2008-11-23T17:21:11Z2009-08-10T12:56:46Z
<p><strong>(Scroll down to bottom of post to find solution.)</strong></p>
<p>Got a asp.net page which contains a
Datalist. Inside this datalist, there
is a template containing a
dropdownlist and each time the
datalist is filled with an item, a
ItemCreatedCommand is called. The
itemCreatedCommand is responsible for
databinding the dropdownlist. </p>
<p>I think the problem lies here, that
I'm using ItemCreatedCommand to
populate it - but the strange things
is that if I choose the color "green",
the page will autopostback, and I will
see that the dropdown is still on the
color green, but when trying to use
it's SelectedIndex, I always get 0...</p>
<pre><code>protected void DataListProducts_ItemCreatedCommand(object
source, DataListItemEventArgs e)
var itemId = (String)DataListProducts.DataKeys[e.Item.ItemIndex];
var item = itemBLL.GetFullItem(itemId);
var DropDownListColor = (DropDownList)e.Item.FindControl("DropDownListColor");
//Also tried with :
//if(!isPostBack) {
DropDownListColor.DataSource = item.ColorList;
DropDownList.Color.Databind();
// } End !isPostBack)
Label1.test = DropDownListColor.SelectedIndex.toString();
// <- THIS IS ALWAYS 0! *grr*
</code></pre>
<p>I've narrowed down the code a bit for
viewing, but still you can see what
I'm trying to do :) The reason for
why I'm doing this, and not declaring
the datasource for the colors directly
i aspx-page, is that I need to run a
test if(showColors), but I do not want
to clutter up the html-page with code
that I feel should be in the code
behind-file. </p>
<p>EDIT: After trying to alter
SelectedIndexChange - I'm having a
"logical" confusion in my head now -
how am I to alter elements inside the
datalist? Since, as far as I know - I
do not have any way to check which of
the items in the datalist this
particular dropdownlist belongs to...
Or? I'm going to try out a few ways
and see what I end up with ;) But do
please post your thoughts on this
question :) </p>
<p><strong>SOLUTION:</strong> </p>
<p>Either bubble the event to ItemCommand, or Handle the event, get the senders parent(which is a datalistItem and manipulate elements in there. </p>
<pre><code> protected void DropDownListColor_SelectedIndexChanged(object sender, EventArgs e)
{
DropDownList dropDownListColor = (DropDownList)sender;
DataListItem dataListItem = (DataListItem)dropDownListColor.Parent;
var item = items[dataListItem.ItemIndex];
var color = item.ItemColor[dropDownListColor.SelectedIndex];
var LabelPrice = (Label)dataListItem.FindControl("LabelPrice");
LabelPrice.Text = color.Price;
}
</code></pre>
http://stackoverflow.com/questions/312735/dropdownlist-selectedindex-always-0-yes-i-do-have-ispostback/312743#3127434Answer by devio for DropdownList.selectedIndex always 0 (yes, I do have !isPostBack)devio2008-11-23T17:28:09Z2008-11-23T17:28:09Z<p>When the DataList is data-bound, the AutoPostBack has not been handled yet, i.e. the values in the ItemCreated event are still the original values.</p>
<p>You need to handle the SelectedIndexChange event of the dropdown control.</p>
http://stackoverflow.com/questions/312735/dropdownlist-selectedindex-always-0-yes-i-do-have-ispostback/312832#3128320Answer by devio for DropdownList.selectedIndex always 0 (yes, I do have !isPostBack)devio2008-11-23T19:10:11Z2008-11-23T19:10:11Z<p>Regarding your 2nd question:</p>
<p>I suggest you remove the AutoPostBack from the dropdown, add an "Update" button, and update the data in the button Click event.</p>
<p>The button can hold Command and CommandArgument values, so it's easy to associate with a database record.</p>
http://stackoverflow.com/questions/312735/dropdownlist-selectedindex-always-0-yes-i-do-have-ispostback/312988#3129880Answer by devio for DropdownList.selectedIndex always 0 (yes, I do have !isPostBack)devio2008-11-23T21:31:12Z2008-11-23T21:31:12Z<p>some MSDN links with C# examples on bubbling</p>
<p><a href="http://msdn.microsoft.com/en-us/library/system.web.ui.control.onbubbleevent.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/system.web.ui.control.onbubbleevent.aspx</a></p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa719644" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa719644</a>(VS.71).aspx</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa720044" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa720044</a>(VS.71).aspx</p>