Product Bundles
DevCraft
All Telerik .NET tools and Kendo UI JavaScript components in one package. Now enhanced with:
Web
Mobile
Document Management
Desktop
Reporting
Testing & Mocking
CMS
UI/UX Tools
Debugging
Free Tools
Support and Learning
Productivity and Design Tools
foreach (RadComboBoxItem item in rdComboNames.Items)
{
CheckBox chk = (CheckBox)item.FindControl("chk1");
if (i == 0)
checkedText += "Names:";
}
else if (chk.Checked)
checkedText += item.Text + ", ";
i++;
checkedText =
string
.Concat(
"Names: "
,
.Join(
", "
rdComboNames.Items.Skip(1)
.Where(x => x.Checked)
.Select(x => ((CheckBox) x.FindControl(
"chk1"
)).Text)
.ToArray()));