Esempio n. 1
0
 public UIElementDataListRowEntity(UIElementDataListEntity dataList)
 {
     DataList = dataList;
     if (dataList != null)
     {
         foreach (UIElementDataListColumnEntityAbstract column in dataList.DataColumns)
         {
             Cells.Add(new UIElementDataListRowCellEntity(this, column));
         }
     }
 }
Esempio n. 2
0
 public UIElementDataListColumnEntityCollection(UIElementDataListEntity dataListEntity)
 {
     this._dataListEntity = dataListEntity;
 }