Click here to Skip to main content
15,887,135 members
Home / Discussions / C#
   

C#

 
AnswerRe: Calling a method in another form Pin
S. Senthil Kumar27-Apr-06 18:29
S. Senthil Kumar27-Apr-06 18:29 
QuestionOverride TextBox portion of a ComboBox? Pin
secovel27-Apr-06 7:46
secovel27-Apr-06 7:46 
AnswerRe: Override TextBox portion of a ComboBox? Pin
Robert Rohde27-Apr-06 8:22
Robert Rohde27-Apr-06 8:22 
QuestionRotate the world Pin
Sabry190527-Apr-06 7:43
Sabry190527-Apr-06 7:43 
AnswerRe: Rotate the world Pin
Anubhava Dimri28-Jun-10 19:24
Anubhava Dimri28-Jun-10 19:24 
QuestionHow to retrieve DVD interfaces from a custom DirectSHow graph? Pin
manusse27-Apr-06 5:45
manusse27-Apr-06 5:45 
AnswerRe: How to retrieve DVD interfaces from a custom DirectSHow graph? Pin
manusse28-Apr-06 1:00
manusse28-Apr-06 1:00 
QuestionDatalist with CheckboxList Pin
ZeedijkMike27-Apr-06 4:38
ZeedijkMike27-Apr-06 4:38 
Hi all,
I have a Datalist with dynamicly created CheckbosLists in it, a little like this:
protected void lstDashboardOptions_ItemDataBound(object sender, System.Web.UI.WebControls.DataListItemEventArgs e)
{
    CheckBoxList cbxDashboardGroup = new CheckBoxList();
    DataListItem item = e.Item;
    if ((item.ItemType == ListItemType.Item) ||
        (item.ItemType == ListItemType.AlternatingItem))
    {
        cbxDashboardGroup = (CheckBoxList)item.FindControl("cbxDashboardGroup");
        DataRowView drv = (DataRowView)item.DataItem;
        int intReportId = Convert.ToInt32(drv.Row["rep_id"]);
        cbxDashboardGroup.DataSource = ccoDalReport.ReportGetTabs(intReportId);
        cbxDashboardGroup.DataTextField = "rta_Name";
        cbxDashboardGroup.DataValueField = "rta_Id";
        cbxDashboardGroup.DataBind();
    }
}

The code works fine. The problem comes when I want to check wich items has been selected. I do this in a foreach loop a little like this:
protected void btnDashboardSave_Click(object sender, EventArgs e)
{
  foreach (DataListItem item in lstDashboardOptions.Items)
  {
    foreach (Control ctrl in item.Controls)
    {
      if (ctrl is CheckBoxList)
      {
        foreach (ListItem lstItem in (ctrl as CheckBoxList).Items)
        {
           Response.Write(lstItem.Text +"["+ lstItem.Selected) + "]<br>";
        }
      }
    }
  }
}

The item text comes out right, but the item selected always return false i.e. not checked.
The whole thing is sitting in a usercontrol, but that shouldn't be the reason for it not to work. Any one knows what I'm doing wrong here.

Mike
AnswerRe: Datalist with CheckboxList Pin
Paul Brower27-Apr-06 4:49
Paul Brower27-Apr-06 4:49 
GeneralRe: Datalist with CheckboxList Pin
ZeedijkMike27-Apr-06 5:21
ZeedijkMike27-Apr-06 5:21 
GeneralRe: Datalist with CheckboxList Pin
mikker_12327-Apr-06 7:37
mikker_12327-Apr-06 7:37 
GeneralRe: Datalist with CheckboxList Pin
ZeedijkMike27-Apr-06 23:11
ZeedijkMike27-Apr-06 23:11 
QuestionPrevent my process from being killed. Pin
syntax^8427-Apr-06 3:58
syntax^8427-Apr-06 3:58 
AnswerRe: Prevent my process from being killed. Pin
Vasudevan Deepak Kumar27-Apr-06 4:00
Vasudevan Deepak Kumar27-Apr-06 4:00 
GeneralRe: Prevent my process from being killed. Pin
syntax^8427-Apr-06 4:04
syntax^8427-Apr-06 4:04 
GeneralRe: Prevent my process from being killed. Pin
Judah Gabriel Himango27-Apr-06 4:47
sponsorJudah Gabriel Himango27-Apr-06 4:47 
GeneralRe: Prevent my process from being killed. Pin
syntax^8427-Apr-06 4:58
syntax^8427-Apr-06 4:58 
QuestionDatabinding not working...? Pin
mikker_12327-Apr-06 2:58
mikker_12327-Apr-06 2:58 
AnswerRe: Databinding not working...? Pin
Josh Smith27-Apr-06 3:53
Josh Smith27-Apr-06 3:53 
GeneralRe: Databinding not working...? Pin
mikker_12327-Apr-06 5:16
mikker_12327-Apr-06 5:16 
GeneralRe: Databinding not working...? Pin
Josh Smith27-Apr-06 7:09
Josh Smith27-Apr-06 7:09 
GeneralRe: Databinding not working...? Pin
mikker_12327-Apr-06 7:33
mikker_12327-Apr-06 7:33 
QuestionDATA GRID Pin
MilindKumar27-Apr-06 2:20
MilindKumar27-Apr-06 2:20 
AnswerRe: DATA GRID Pin
Josh Smith27-Apr-06 4:25
Josh Smith27-Apr-06 4:25 
QuestionMemoryOutException Pin
agmb27-Apr-06 2:18
agmb27-Apr-06 2:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.