public htmlColumn(string columnName, Type dataType, int?tableColIndex, string controlId, string controlAtt , string alternateColName, enum_controlType controlType) : base(columnName, dataType) { this.prp_tableColIndex = tableColIndex; this.prp_controlId = controlId; this.prp_controlType = controlType; this.prp_controlAtt = controlAtt; this.prp_alternateColName = alternateColName; }
public htmlColumn(string columnName, Type dataType, int?tableColIndex, string controlId, enum_controlType controlType) : this(columnName, dataType, tableColIndex, controlId, null, null, enum_controlType.input) { }