private void ChildrenList_DataRowRender(object sender, BocListDataRowRenderEventArgs e)
 {
     if (e.ListIndex == 3)
     {
         e.SetRowReadOnly();
     }
 }
 private void ChildrenList_DataRowRender(object sender, BocListDataRowRenderEventArgs e)
 {
   if (e.ListIndex == 3)
   {
     e.SetRowReadOnly();
     e.SetAdditionalCssClassForDataRow ("test");
   }
 }