This commit is contained in:
2020-02-14 23:38:31 +00:00
parent 798e63c396
commit 2319c22745
2 changed files with 9 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
# Custom fields specifications
16 custom fields for most object
custom fields can be returned in datalists
Custom fields cannot be sorted or filtered since they don't really exist in the db
AyaNova will do it's best to show them in a grid view and on reports in the format chosen by user

View File

@@ -58,7 +58,8 @@ namespace AyaNova.DataList
if (o.IsCustomField && !CustomFieldIncluded)
{ //if any are custom field then add custom fields column to query
CustomFieldIncluded=true;
sb.Append(", ");
sb.Append(o.GetSqlValueColumnName());
}
else
{