for
(int i = 0; i < radGrid.Rows.Count; i++)
{
radGrid.Rows[i].Cells[
"-"].Value = Boolean.TrueString;
item = radGrid.Rows[i].DataBoundItem;
if (!this.selectedRows.Contains(item))
this.selectedRows.Add(item);
}
UnCheckAll:
this
.selectedRows.Clear();
for (int i = 0; i < radGrid.Rows.Count; i++)
{
radGrid.Rows[i].Cells[
"-"].Value = Boolean.FalseString;
}
Hello,
I need to slightly adjust the default theme and save it in a new theme.
working with the latest release 2009 q3 1203
Took the following steps:
downloaded the sourcode and created modified the RadControlsTheme.ControlDefault class library.
Made the modifications and they seem to work ( only 1 control is modified so far).
The problem is that the Control default theme looks different then before (older).
Is the included theme in the download the latest version?
Where can i get the correct version of the class library officeblue 2007 theme.
Kind regards,
Tim
var ctl1= $find('<%= lstTestcategory2.Clientid %>'); |
var ctl= $find('<%= lstTestcategory.Clientid %>'); |
for(var i = 0; i<= ctl.get_items().get_count()-1; i++) |
{ |
var item1 = ctl.get_items().getItem(i); |
alert(item1.get_text()); |
alert(item1.get_selected()); |
check = 1; |
for(var i = 0; i<= ctl1.get_items().get_count()-1; i++) |
{ |
// alert('in'); |
var item = ctl1.get_items().getItem(i); |
if(item.get_text() == e.get_item().get_text()) |
{ |
// alert('in1'); |
item.set_selected(true); |
check = 1; |
} |
else |
{ |
item.set_selected(false); |
} |
} |