This commit is contained in:
2020-01-15 15:27:06 +00:00
parent ea9fd9d249
commit fb87ddc312
2 changed files with 10 additions and 4 deletions

View File

@@ -144,6 +144,9 @@ namespace AyaNova.Biz
public string DataType { get; set; }
//If it's an enum DataType then this is the specific enum type which sb the name of the class that holds the enum in the server project
public string EnumType { get; set; }
//if field is a reference to another object (i.e. a client in a workorders list)
//then the type to open is set here
public int AyObjectType {get;set;}
public ObjectField()
@@ -155,6 +158,8 @@ namespace AyaNova.Biz
Filterable = true;
Sortable = true;
MiniAvailable = true;
//Set openable object type to no type which is the default and means it's not a link to another object
AyObjectType=(int)AyaType.NoType;
}
}