This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user