This is a migrated thread and some comments may be shown as answers.

RadlIst Box checked true checkbox

2 Answers 133 Views
TreeList
This is a migrated thread and some comments may be shown as answers.
mohamed
Top achievements
Rank 1
mohamed asked on 17 Feb 2013, 08:26 AM


How checked true the check box in Rad list box
See the screen shot attached here . i bind the record one it's shows two times how i restrict that

Thanks Advance,
Mohamed.

2 Answers, 1 is accepted

Sort by
0
Accepted
Princy
Top achievements
Rank 2
answered on 18 Feb 2013, 07:23 AM
Hi,

I suppose you want to make the Checkboxes checked. Here is the sample code I tried.

C#:
protected void RadButton1_Click(object sender, EventArgs e)
{
    foreach (RadListBoxItem item in RadListBox1.Items)
    {
        item.Checked = true;
    }
}

Thanks,
Princy.
0
mohamed
Top achievements
Rank 1
answered on 18 Feb 2013, 10:33 AM
Thanks For Ur reply Princy,



Regards,
Mohamed.
Tags
TreeList
Asked by
mohamed
Top achievements
Rank 1
Answers by
Princy
Top achievements
Rank 2
mohamed
Top achievements
Rank 1
Share this question
or