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