From c5c3d5b8305bebd9c286b50afd4c31b540e5c3d2 Mon Sep 17 00:00:00 2001 From: John Cardinal Date: Sat, 6 Feb 2021 00:07:12 +0000 Subject: [PATCH] --- server/AyaNova/DataList/DataListProcessingBase.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/AyaNova/DataList/DataListProcessingBase.cs b/server/AyaNova/DataList/DataListProcessingBase.cs index 55accd29..8720c4e5 100644 --- a/server/AyaNova/DataList/DataListProcessingBase.cs +++ b/server/AyaNova/DataList/DataListProcessingBase.cs @@ -153,6 +153,10 @@ namespace AyaNova.DataList //field key needed for sorting etc sb.Append($",\"fk\":\"{o.FieldKey}\""); + //Sortable? + sb.Append($",\"srt\":\"{o.IsSortable}\""); + //Filterable? + sb.Append($",\"flt\":\"{o.IsFilterable}\""); sb.Append("}");