473,405 Members | 2,310 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,405 software developers and data experts.

How do I keep dynamically created dropdownlist when event OnSelectedIndexChanged?

Hi

I'm adding two dropdownlist in my webform by clicking a button. I fill
the first dropdown with some values from my DB and the other one when I
choose from the first dropdown. But since theese dropdownlists are
created by clicking a button they no longer exists on my webform. How
do I keep my dynamically created dropdown when using
OnSelectedIndexChanged? Can anyone help me solve this problem? Or is
there a better way of doing this?

Thanks
..christer

(here's some of my code)
aspx-page:
<asp:Button Runat="server" ID="btnAddGroup" Text="Add Main-/Subgroup"
/>
<asp:PlaceHolder ID="phGroup" Runat="server" /><asp:PlaceHolder
ID="phSubGroup" Runat="server" />

code behinde (aspx.cs):
private void btnAddGroup_Click(object sender, System.EventArgs e){
CreateDropDown(this.phGroup, "selMainGrp");
}

private void CreateDropDown(PlaceHolder ph, string id){
DropDownList dd = new DropDownList();
FillMainGrpListBox(ph, dd, id);
}

private void FillMainGrpListBox(PlaceHolder ph, DropDownList dd, string
id){
DropDownList selMainGroup = dd;
string sqlProc = "GetMainGroup";

Data data = new Data();

resultDataSet = data.GetDataSetByProcName(sqlProc);

dd.Items.Add("Choose");

//Fill control
foreach(DataTable table in resultDataSet.Tables){
foreach(DataRow row in table.Rows){
foreach(DataColumn col in table.Columns){
//Add maingroup to dropdownlist
selMainGroup.Items.Add(row[col].ToString());
}
}
}

//Add control
string sAttributes;
sAttributes = "<b>Main Group</b>";
ph.Controls.Add(new LiteralControl(sAttributes));
selMainGroup.ID = id;
selMainGroup.AutoPostBack = true;
selMainGroup.SelectedIndexChanged +=new
EventHandler(selMainGroup_SelectedIndexChanged);
ph.Controls.Add(selMainGroup);

//Add Subgroup dropdown
DropDownList ddSub = new DropDownList();
sAttributes = "<b>Sub group</b>";
ddSub.ID = "selSubGrp";
ddSub.Items.Add("Choose");
phSubGroup.Controls.Add(new LiteralControl(sAttributes));
phSubGroup.Controls.Add(ddSub);
}

private void selMainGroup_SelectedIndexChanged(object sender,
System.EventArgs e){
string mainGroupValue = this.selMainGrp.SelectedValue;
if(mainGroupValue != "Choose"){
//Reset subgroup dropdown
SetDefaultListBoxValue(selSubGrp);

//Add values in subgroup
FillSubGrpListBox(mainGroupValue);
}
}

private void FillSubGrpListBox(string mainGroupValue){
string sqlProc = "GetSubGroup";

string[,] paramArr = {{"@MainGroup",mainGroupValue}};

Data data = new Data();
resultDataSet = data.GetDataSetByProcName(sqlProc, paramArr);

foreach(DataTable table in resultDataSet.Tables){
foreach(DataRow row in table.Rows){
foreach(DataColumn col in table.Columns){
selSubGrp.Items.Add(row[col].ToString());
}
}
}
}

Nov 19 '05 #1
8 3368
Instead of creating the ddls dynamically, put them on the .aspx form in a
normal way and, in run time, control their visibility and databinding
properties.

Eliyahu

<ut*******@gmail.com> wrote in message
news:11*********************@g47g2000cwa.googlegro ups.com...
Hi

I'm adding two dropdownlist in my webform by clicking a button. I fill
the first dropdown with some values from my DB and the other one when I
choose from the first dropdown. But since theese dropdownlists are
created by clicking a button they no longer exists on my webform. How
do I keep my dynamically created dropdown when using
OnSelectedIndexChanged? Can anyone help me solve this problem? Or is
there a better way of doing this?

Thanks
.christer

(here's some of my code)
aspx-page:
<asp:Button Runat="server" ID="btnAddGroup" Text="Add Main-/Subgroup"
/>
<asp:PlaceHolder ID="phGroup" Runat="server" /><asp:PlaceHolder
ID="phSubGroup" Runat="server" />

code behinde (aspx.cs):
private void btnAddGroup_Click(object sender, System.EventArgs e){
CreateDropDown(this.phGroup, "selMainGrp");
}

private void CreateDropDown(PlaceHolder ph, string id){
DropDownList dd = new DropDownList();
FillMainGrpListBox(ph, dd, id);
}

private void FillMainGrpListBox(PlaceHolder ph, DropDownList dd, string
id){
DropDownList selMainGroup = dd;
string sqlProc = "GetMainGroup";

Data data = new Data();

resultDataSet = data.GetDataSetByProcName(sqlProc);

dd.Items.Add("Choose");

//Fill control
foreach(DataTable table in resultDataSet.Tables){
foreach(DataRow row in table.Rows){
foreach(DataColumn col in table.Columns){
//Add maingroup to dropdownlist
selMainGroup.Items.Add(row[col].ToString());
}
}
}

//Add control
string sAttributes;
sAttributes = "<b>Main Group</b>";
ph.Controls.Add(new LiteralControl(sAttributes));
selMainGroup.ID = id;
selMainGroup.AutoPostBack = true;
selMainGroup.SelectedIndexChanged +=new
EventHandler(selMainGroup_SelectedIndexChanged);
ph.Controls.Add(selMainGroup);

//Add Subgroup dropdown
DropDownList ddSub = new DropDownList();
sAttributes = "<b>Sub group</b>";
ddSub.ID = "selSubGrp";
ddSub.Items.Add("Choose");
phSubGroup.Controls.Add(new LiteralControl(sAttributes));
phSubGroup.Controls.Add(ddSub);
}

private void selMainGroup_SelectedIndexChanged(object sender,
System.EventArgs e){
string mainGroupValue = this.selMainGrp.SelectedValue;
if(mainGroupValue != "Choose"){
//Reset subgroup dropdown
SetDefaultListBoxValue(selSubGrp);

//Add values in subgroup
FillSubGrpListBox(mainGroupValue);
}
}

private void FillSubGrpListBox(string mainGroupValue){
string sqlProc = "GetSubGroup";

string[,] paramArr = {{"@MainGroup",mainGroupValue}};

Data data = new Data();
resultDataSet = data.GetDataSetByProcName(sqlProc, paramArr);

foreach(DataTable table in resultDataSet.Tables){
foreach(DataRow row in table.Rows){
foreach(DataColumn col in table.Columns){
selSubGrp.Items.Add(row[col].ToString());
}
}
}
}

Nov 19 '05 #2
What I want to do is click on my "Add"-button and create two dropdowns
- the first I fill with values from my DB. Then I select a value from
the first drop down and fill the other drop down (with another
roundtrip to my DB collecting the new values for the second dropdown).
When that's done I want to click my "Add Selection"-button and add the
selection to my webform (values from both dropdowns). After that I
would like to add another dropdown make my selection and and add it to
my webform, and so on.

When I've made all my selections I would like to press a "Save"-button
and save all the selected values to my DB.

Thus, I do not know in advance how many selections I would like to make
and thats why I wanna create theese controls at run time.

Hope this clarified a bit
..christer

Nov 19 '05 #3
Do you mean that first "Add" click produces 2 ddls, then another "Add"
produces another 2 ddls and you will have 4 ddls on the form? And 6 ddls
after the third click?

Can't you use the same pair of ddls for every "Add" click?

Eliyahu

<ut*******@gmail.com> wrote in message
news:11**********************@f14g2000cwb.googlegr oups.com...
What I want to do is click on my "Add"-button and create two dropdowns
- the first I fill with values from my DB. Then I select a value from
the first drop down and fill the other drop down (with another
roundtrip to my DB collecting the new values for the second dropdown).
When that's done I want to click my "Add Selection"-button and add the
selection to my webform (values from both dropdowns). After that I
would like to add another dropdown make my selection and and add it to
my webform, and so on.

When I've made all my selections I would like to press a "Save"-button
and save all the selected values to my DB.

Thus, I do not know in advance how many selections I would like to make
and thats why I wanna create theese controls at run time.

Hope this clarified a bit
.christer

Nov 19 '05 #4
Ok. But how do I preserve (and view) the value when I click my "Add
selection"-button?

If I use a <asp:placeholder ../> for instance and try to place my drop
down values in that place when clicking "Add selection" the page
reloads and selection (value) is gone.

..christer

Nov 19 '05 #5
If you have 2 static ddls, what stops you from getting their selected values
on server side in the "Add selection" onclick event handler?

Eliyahu

<ut*******@gmail.com> wrote in message
news:11*********************@g49g2000cwa.googlegro ups.com...
Ok. But how do I preserve (and view) the value when I click my "Add
selection"-button?

If I use a <asp:placeholder ../> for instance and try to place my drop
down values in that place when clicking "Add selection" the page
reloads and selection (value) is gone.

.christer

Nov 19 '05 #6
I am lousy at explaining I think. And my english ain't what it should
be.

I want to preserve/add values in a placeholder when I make my
selection. I can do this with my first dd selection like this.
- Make my selection in my drop down
- Add selection to a placeholder by clicking "btnAddSales"

aspx:
<label for="selSalesAccount">Sales Account:</label>
<asp:DropDownList Runat="server" ID="selSalesAccount"
AutoPostBack="True" />
<asp:Button Runat="server" ID="btnAddSales" />
<asp:PlaceHolder Runat="server" ID="phSales" />

code behind:
private void btnAddSales_Click(object sender, EventArgs e){
string val = this.selSalesAccount.SelectedValue;
TextBox tb = new TextBox();
tb.ID = val;
this.phSales.Controls.Add(tb);
tb.Text = val;
tb.AutoPostBack = true;
}

So now I have my first drop down selection in my placeholder. Now I
want to make another selection from my dropdown and add its value to my
placeholder (making it two values) - but when I choose a new item in
the drop down values preserved in my placeholder is gone.

How do I keep thees selected values when I do another runtrip to the
server?

(this is a simplyfied example of what I want to do, but if I can get
help with this I should be able to sort the rest out myself)

..christer

Nov 19 '05 #7
A placeholder is not good for you. First of all, choose a class you want to
use to store the selection. It could be an array, ArrayList, SortedList,
DataTable. Secondly, decide on how to make it persistent between the
postbacks. You can put it in a session variable or in the ViewState. Then
finally chose a web control that will render your selection on the page.
Typically it would be a datagrid, a datalist or a repeater. And finally bind
your control to your storage object on every postback.

Eliyahu

<ut*******@gmail.com> wrote in message
news:11**********************@g49g2000cwa.googlegr oups.com...
I am lousy at explaining I think. And my english ain't what it should
be.

I want to preserve/add values in a placeholder when I make my
selection. I can do this with my first dd selection like this.
- Make my selection in my drop down
- Add selection to a placeholder by clicking "btnAddSales"

aspx:
<label for="selSalesAccount">Sales Account:</label>
<asp:DropDownList Runat="server" ID="selSalesAccount"
AutoPostBack="True" />
<asp:Button Runat="server" ID="btnAddSales" />
<asp:PlaceHolder Runat="server" ID="phSales" />

code behind:
private void btnAddSales_Click(object sender, EventArgs e){
string val = this.selSalesAccount.SelectedValue;
TextBox tb = new TextBox();
tb.ID = val;
this.phSales.Controls.Add(tb);
tb.Text = val;
tb.AutoPostBack = true;
}

So now I have my first drop down selection in my placeholder. Now I
want to make another selection from my dropdown and add its value to my
placeholder (making it two values) - but when I choose a new item in
the drop down values preserved in my placeholder is gone.

How do I keep thees selected values when I do another runtrip to the
server?

(this is a simplyfied example of what I want to do, but if I can get
help with this I should be able to sort the rest out myself)

.christer

Nov 19 '05 #8
Ok thanks!
I'll try that.

..christer

Nov 19 '05 #9

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

0
by: Ashish Sharma | last post by:
I have a drop down list inside a data list on a form like this : <asp:DataList ID="DataList1" runat="server" EnableViewState="False"> <ItemTemplate> <asp:Label ID="lblname" Runat="server"...
6
by: Roshawn | last post by:
Hi, I have a DDL server control on my web form. I'm having difficulty trying to fire the OnSelectedIndexChanged event. I've specified a procedure to handle the event. Whenever I changed the...
1
by: Nirmalkumar | last post by:
How to attach an event to dynamically created control in VB.NET I have dynamically created dropdown list in code behind (VB.NET). For this control I want to attach an event for action...
1
by: Paul L | last post by:
Hi, I have an issue with the OnSelectedIndexChanged event not firing for a DropDownList control which is in the ItemTemplate of a DataList. I have made an exact copy of the DropDownList control,...
2
by: glenn | last post by:
Hi folks, I am trying to determine which item in a DropDownList Web control has been selected. I have posted an OnSelectedIndexChanged subroutine in my code with a reference to the subroutine...
11
by: Santosh | last post by:
Dear all , i am writting following code. if(Page.IsPostBack==false) { try { BindSectionDropDownlist();
3
by: Iain | last post by:
Hi All I have 2 DropDownList boxes on a page. The first (id= "Operation") is populated on PageLoad with the contents of a database table. The second id="WorkStations" will not be populated...
0
by: swapnil1987 | last post by:
hello friends i am trying to find solution for this problem if u know something then please tell i am creating web application that runs on black berry. here i need to create selection list...
27
by: user1980 | last post by:
hello, i am trying to create a request form using asp.net where when a user selects a checkbox, a dropdown should appear dynamically. I have seen few java-scripts in web, but I was wondering if I...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.