This commit is contained in:
2020-12-18 18:56:09 +00:00
parent 02cca7c1a5
commit 4e51e45e95
5 changed files with 152 additions and 6 deletions

View File

@@ -24,7 +24,7 @@ namespace AyaNova.DataList
//CLIENT / SERVER - client display server validation purposes
public bool IsSortable { get; set; }
//CLIENT / SERVER - indicates internal only meta column, don't show to user for filter settings etc
//CLIENT / SERVER - indicates internal only meta column, don't show to user for filter settings etc
public bool IsMeta { get; set; }
//CLIENT Use only for display
@@ -46,8 +46,8 @@ namespace AyaNova.DataList
public string SqlIdColumnName { get; set; }
[JsonIgnore]
public string SqlValueColumnName { get; set; }
[JsonIgnore]
public string SqlAyTypeColumnName { get; set; }//column to fetch the AyaType for this field to set it dynamically instead of preset
@@ -59,9 +59,10 @@ namespace AyaNova.DataList
IsFilterable = true;
IsSortable = true;
IsRowId = false;
IsMeta=false;
IsMeta = false;
//Set openable object type to no type which is the default and means it's not a link to another object
AyaObjectType = (int)AyaType.NoType;
SqlAyTypeColumnName=string.Empty;
}