This commit is contained in:
2021-01-27 20:18:21 +00:00
parent 05877d0a3e
commit ecfb5dcea5
4 changed files with 64 additions and 38 deletions

View File

@@ -1,5 +1,4 @@
using System.Collections.Generic;
using Newtonsoft.Json.Linq;
using AyaNova.Biz;
namespace AyaNova.DataList
{
@@ -14,28 +13,32 @@ namespace AyaNova.DataList
//######## DEFAULT VIEW WHEN NO VIEW CHOSEN ############
//Default ListView
dynamic dlistView = new JArray();
// //Default ListView
// dynamic dlistView = new JArray();
dynamic cm = new JObject();
cm.fld = "customername";
cm.sort = "+";
dlistView.Add(cm);
// dynamic cm = new JObject();
// cm.fld = "customername";
// cm.sort = "+";
// dlistView.Add(cm);
cm = new JObject();
cm.fld = "customerphone1";
dlistView.Add(cm);
// cm = new JObject();
// cm.fld = "customerphone1";
// dlistView.Add(cm);
cm = new JObject();
cm.fld = "customeremail";
dlistView.Add(cm);
// cm = new JObject();
// cm.fld = "customeremail";
// dlistView.Add(cm);
cm = new JObject();
cm.fld = "customerheadoffice";
dlistView.Add(cm);
// cm = new JObject();
// cm.fld = "customerheadoffice";
// dlistView.Add(cm);
// DefaultListView = dlistView.ToString(Newtonsoft.Json.Formatting.None);
DefaultColumns = new List<string>() { "customername", "customerphone1", "customeremail", "customerheadoffice" };
DefaultSortBy = new Dictionary<string, string>() { { "customername", "+" } };
DefaultListView = dlistView.ToString(Newtonsoft.Json.Formatting.None);
//NOTE: Due to the join, all the sql id and name fields that can conflict with the joined table need to be specified completely
@@ -310,7 +313,7 @@ namespace AyaNova.DataList
FieldDefinitions.Add(new AyaDataListFieldDefinition { TKey = "CustomerCustom16", FieldKey = "customercustom16", IsCustomField = true, IsFilterable = false, IsSortable = false, SqlValueColumnName = "acustomer.customfields" });
}
}//eoc
}//eons