Hi, just want to know which is the later version:
RadControls for ASP.NET Q3 2007, or
RadControls 'Prometheus' for ASP.NET Q3 2007.
Whats the major differences between them. Also, can you use these two versions together, or just use the latest one?
Thanks heaps...

if (e.Item is GridDataItem && e.Item is GridEditableItem)
{
GridDataItem item = e.Item as GridDataItem;
CheckBox box = (CheckBox)item.FindControl("chkLstAdd");
Planning.
Task dataSourceRow = (Planning.Task)e.Item.DataItem;
//set custom attributes (i.e the checkbox.checked value) from the datasource:
box.Checked =
false;
if (dataSourceRow.IsTaskAllocated.ToString() == "True")
{
box.Checked =
true;
}
}
Should I not try prevent the "To be inserted row " from executing this code, ? if so How?
ManyThanks
Neal