This commit is contained in:
2020-03-13 19:28:54 +00:00
parent d6d69b4a0c
commit 75b18e0f0e
5 changed files with 28 additions and 6 deletions

View File

@@ -8,6 +8,9 @@ namespace AyaNova.PickList
//This class defines a field used for returning data in list format for UI pick lists
public class AyaPickListFieldDefinition
{
//TODO: Many of these options are redundant for a picklist as this object was copied from datalist
//TODO: remove the redundant options once it's working
//CLIENT / SERVER Unique identifier used at BOTH client and server
//also the sql displaycolumnname if identical
public string FieldKey { get; set; }
@@ -34,6 +37,7 @@ namespace AyaNova.PickList
//MUST be present in all datalists and displayed at the client
public bool IsRowId { get; set; }
//CLIENT / SERVER - client display and to indicate what object to open , Server for formatting return object
public int AyaObjectType { get; set; }