Click here to Skip to main content
16,022,400 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
In button click to Dynamically created checkbox and dropdown list how to get checkbox.checked=true and dropdown values to find

This is my code
chk_Dynamic = new CheckBox();
          Panel1.Controls.Add(chk_Dynamic);
          dropdown = new RadComboBox();
          dropdown.ID = "dropdown";
          Panel1.Controls.Add(dropdown);
          dropdown.Height = Unit.Pixel(200);
          dropdown.Width = Unit.Pixel(110);
          dropdown.BackColor = System.Drawing.Color.LightGray;
          dropdown.Items.Insert(0, new RadComboBoxItem("--Select--", "-1"));
          dropdown.Items.Insert(1, new RadComboBoxItem("Today", "10000000000001"));
          dropdown.Items.Insert(2, new RadComboBoxItem("Yesterday", "10000000000002"));
          dropdown.Items.Insert(3, new RadComboBoxItem("This Week", "10000000000003"));
          dropdown.Items.Insert(4, new RadComboBoxItem("Last Week", "10000000000004"));
          dropdown.Items.Insert(5, new RadComboBoxItem("This Month", "10000000000005"));
          dropdown.Items.Insert(6, new RadComboBoxItem("Last Month", "10000000000006"));
          dropdown.Items.Insert(7, new RadComboBoxItem("This Quarter", "10000000000007"));
          dropdown.Items.Insert(8, new RadComboBoxItem("Last Quarter", "10000000000008"));
          dropdown.Items.Insert(9, new RadComboBoxItem("This Year", "10000000000009"));
          dropdown.Items.Insert(10, new RadComboBoxItem("Last Year", "10000000000010"));

Advance
Thanks
Tamim
Posted
Updated 8-Jun-12 0:21am
v2
Comments
Sandeep Mewara 8-Jun-12 7:34am    
This is not a well framed question! We cannot work out what you are trying to do/ask from the post. Please elaborate and be specific.
Use the "Improve question" link to edit your question and provide better information.

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900