Commit b711aae9 by lcx

handsontable中column实体添加字段

parent c4ca24e2
......@@ -119,6 +119,8 @@ public HandsonColumn(string data, bool readOnly = false, DataFormat format = Dat
public string Data { get; set; }
public bool ReadOnly { get; set; }
public string Type { get; set; }
public string[] Source { get; set; }
public bool Strict { get; set; } = false;
public NumericFormat NumericFormat { get; set; }
}
......
......@@ -655,8 +655,8 @@ public HandsonTable GetOtherTempData(int userId, int secondId, int isArchive, in
if (column.Data == "工号")
{
column.Type = "autocomplete";
//column.Source = workNumbers;
//column.Strict = true;
column.Source = workNumbers;
column.Strict = true;
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment