This question is locked. New answers and comments are not allowed.
Hi,
I upgraded my project to 2009 Q2 and Silverlight 3 RTM, also apply last public development build to fix some SL3 issues.
Following code stop working because ChildRecordManagers is misssing;
private void IterateRows(IList<Record> records, bool expand)
{
foreach (Record record in records)
{
if (record is ExpandableDataRecord)
{
ExpandableDataRecord expandableRecord = (ExpandableDataRecord)record;
expandableRecord.IsExpanded = expand ? true : false;
for (int childIndex=0; childIndex < expandableRecord.ChildRecordManagers.Count; childIndex ++)
{
IterateRows(expandableRecord.ChildRecordManagers[childIndex].Records, expand);
}
}
}
}
Could you give me a hint what is the 2009 Q2 equivalent of the function above?
Greg
I upgraded my project to 2009 Q2 and Silverlight 3 RTM, also apply last public development build to fix some SL3 issues.
Following code stop working because ChildRecordManagers is misssing;
private void IterateRows(IList<Record> records, bool expand)
{
foreach (Record record in records)
{
if (record is ExpandableDataRecord)
{
ExpandableDataRecord expandableRecord = (ExpandableDataRecord)record;
expandableRecord.IsExpanded = expand ? true : false;
for (int childIndex=0; childIndex < expandableRecord.ChildRecordManagers.Count; childIndex ++)
{
IterateRows(expandableRecord.ChildRecordManagers[childIndex].Records, expand);
}
}
}
}
Could you give me a hint what is the 2009 Q2 equivalent of the function above?
Greg
