This commit is contained in:
2021-02-20 16:53:35 +00:00
parent a36bda8b5f
commit 9a1f4e25f2
7 changed files with 22 additions and 21 deletions

View File

@@ -12,7 +12,7 @@ namespace AyaNova.Biz
//See the DataList folder / namespace for LIST related similar class
public static class FormFieldReference
public static class FormFieldOptionalCustomizableReference
{
private static Dictionary<string, List<FormField>> _formFields;
private static List<string> _formFieldKeys = null;
@@ -1057,14 +1057,14 @@ namespace AyaNova.Biz
public class FormField
{
//CLIENT / SERVER Unique identifier used at BOTH client and server
//also the sql displaycolumnname if identical
//MUST MATCH MODEL PROPERTY NAME EXACTLY
public string FieldKey { get; set; }
//CLIENT Use only for display
//CLIENT Use only for display in customization form
public string TKey { get; set; }
//CLIENT form customization
public bool Hideable { get; set; }
// public bool Hideable { get; set; }
//CLIENT / SERVER - client display server validation purposes
public bool IsCustomField { get; set; }
@@ -1073,7 +1073,7 @@ namespace AyaNova.Biz
public FormField()
{
//most common defaults
Hideable = true;
// Hideable = true;
IsCustomField = false;
}
}//eoc