Ejemplo n.º 1
0
        public ActionCell(RowBase row, ActionTypes?at = null) : base(row)
        {
            if (at.HasValue)
            {
                ActionType = at.Value;
                Attributes = at.Value.GetActionTypeAttributes();

                if (at == ActionTypes.Edit)
                {
                    Text = "Edit";
                }
            }
        }
Ejemplo n.º 2
0
 public CellBase(RowBase row)
 {
     Row = row;
 }
Ejemplo n.º 3
0
 public DataCell(RowBase row) : base(row)
 {
 }