show/hide this revision's text 7 deleted 15 characters in body; edited tags

(Scroll down to bottom of post to find solution.)

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.

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...

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*grr*

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.

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 :)

SOLUTION:

Either bubble the event to ItemCommand, or Handle the event, get the senders parent(which is a datalistItem and manipulate elements in there.

 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; 
        }
show/hide this revision's text 6 Added solution.

EDIT(org. post below):

OK, I'm about to reach a level where I'm no longer able to do more research

(i.e good grief)

So - I found this which describes my problem very well, and also what seems to be the the solution to my problem.

"In ASP.NET, sometimes we may want to handle the events of child controls placed inside the templates of a DataList. If these controls are Buttons, LinkButtons or ImageButtons, we can respond to their Click event using the ItemCommand event of the DataList as shown here. However if we want to handle, for example, the SelectedIndexChanged Event of a DropDownList inside the DataList template, things may not be so straight forward."

This is how it's been solved:

.NET Framework provides a technique called Event Bubbling to allow a child control to propagate events up its containment hierarchy. In our example we will try Scroll down to bubble the SelectedIndexChanged Event bottom of the DropDownList up post to the ItemCommand Event of its DataList container. If this works then we can handle the event in much the same way as we did for a Button Control.

Full code is available at:
http://209.85.129.132/search?q=cache:cYDzeE8Swf0J...

(Cache, since the original website is down)

Now, my problem is that this is more or less the only place I've found with this solution, and It's in VB.net ;find solution.)How do I do the same thing in C#?

This is the org. post:

in i aspx-page, is that I need to run a

EDIT

SOLUTION:Ok, it seems like I have to

Either bubble the event . Have not quite figured out how to do this yetItemCommand, and It is amazing to see how many are having problems with exactly thisor Handle the event, get the senders parent(which is a datalistItem and so few "solutions"... Hehe!manipulate elements in there.

 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; 
        
show/hide this revision's text 5 Made the URL into a shorter link so the question didn't stretch out so much. It was tough to read.

EDIT(org. post below):

OK, I'm about to reach a level where I'm no longer able to do more research (i.e good grief)

So - I found this which describes my problem very well, and also what seems to be the the solution to my problem.

"In ASP.NET, sometimes we may want to handle the events of child controls placed inside the templates of a DataList. If these controls are Buttons, LinkButtons or ImageButtons, we can respond to their Click event using the ItemCommand event of the DataList as shown here. However if we want to handle, for example, the SelectedIndexChanged Event of a DropDownList inside the DataList template, things may not be so straight forward."

This is how it's been solved:

.NET Framework provides a technique called Event Bubbling to allow a child control to propagate events up its containment hierarchy. In our example we will try to bubble the SelectedIndexChanged Event of the DropDownList up to the ItemCommand Event of its DataList container. If this works then we can handle the event in much the same way as we did for a Button Control.

Full code is available athttp://209.85.129.132/search?q=cache%3AcYDzeE8Swf0J%3Aauthors.aspalliance.com/hmcheung/Articles/030331/Default.aspx+dropdownlist+datalist+selectedindex&hl=no&ct=clnk&cd=11&gl=no&client=firefox-a:
http://209.85.129.132/search?q=cache:cYDzeE8Swf0J...

(Cache, since the original website is down)

Now, my problem is that this is more or less the only place I've found with this solution, and It's in VB.net ;) How do I do the same thing in C#?


This is the org. post:

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.

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...

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

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 in 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.

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 :)

EDIT: Ok, it seems like I have to bubble the event. Have not quite figured out how to do this yet, and It is amazing to see how many are having problems with exactly this, and so few "solutions"... Hehe!

show/hide this revision's text 4 Edited the whole thing :)
show/hide this revision's text 3 Added information about a solution.
show/hide this revision's text 2 added 375 characters in body
show/hide this revision's text 1