All Products
Demos
Pricing
Blogs
Docs & Support
Search
Shopping cart
Login
Contact Us
Get A Free Trial
close mobile menu
Telerik Forums
/
UI for ASP.NET AJAX Forum
/
Calendar
/
Checkbox added to listbox
Cancel
Telerik UI for ASP.NET AJAX
Resources
Buy
Try
Feed for this thread
3 posts, 0 answers
Anmol Maitra
3 posts
Member since:
Jun 2008
Posted 31 Aug 2009
Link to this post
I have two listboxes (source and destination listbox)
I added server side code to have the checkbox checked in the destination listbox depending on a database value. Here is the code to do that. But when I transfer one of the items back to the source listbox, all the checkboxes get unchecked in the destination listbox. Can you tell me why this is happening?
protected void RadListBoxDestination_Inserted(object sender, RadListBoxEventArgs e)
{
string selectedQlfr = QlfrDropDown.SelectedValue;
BtodGenericGrid GridSchema = BtodGenericGrid.CreateInstance(selectedQlfr, "Default", "-1");
for (int i = 0; i < e.Items.Count; i++)
{
string colName = e.Items[i].Text.ToString().ToUpper();
for (int x = 0; x <= GridSchema.ColumnNamesWithAliasSplit.Length - 1; x++)
{
if (colName == GridSchema.ColumnNamesWithAliasSplit[x].ToUpper())
{
if (GridSchema.ColumnVisibleSplit[x].ToString() == "1")
{
e.Items[i].Checked = true;
}
break;
}
}
// e.Items[i].Checked = true;
}
}
SamJ
101 posts
Member since:
Jul 2008
Posted 03 Sep 2009
Link to this post
HI,
I think you posted your question in the wrong forum. I am not sure if the described issue have something in common with RadCalendar.
Is that right?
SamJ
Simon
Admin
2281 posts
Posted 03 Sep 2009
Link to this post
Hello Anmol,
I was unable to reproduce the issue you are describing. Please see the attached page for reference.
Am I missing something?
Best wishes,
Simon
the Telerik team
Instantly find answers to your questions on the new
Telerik Support Portal
.
Watch a
video
on how to optimize your support resource searches and
check out more tips
on the blogs.
checkboxesstatelostontransfer.zip
Back to Top
Close