This commit is contained in:
@@ -14,7 +14,7 @@ namespace AyaNova.PickList
|
||||
dynamic dTemplate = new JArray();
|
||||
|
||||
dynamic cm = new JObject();
|
||||
cm.fld = "name";
|
||||
cm.fld = "reportname";
|
||||
dTemplate.Add(cm);
|
||||
|
||||
base.DefaultTemplate = dTemplate.ToString(Newtonsoft.Json.Formatting.None);
|
||||
@@ -24,18 +24,18 @@ namespace AyaNova.PickList
|
||||
ColumnDefinitions.Add(new AyaPickListFieldDefinition
|
||||
{
|
||||
TKey = "Active",
|
||||
FieldKey = "useractive",
|
||||
FieldKey = "reportactive",
|
||||
ColumnDataType = UiFieldDataType.Bool,
|
||||
SqlValueColumnName = "auser.active",
|
||||
SqlValueColumnName = "areport.active",
|
||||
IsActiveColumn = true
|
||||
});
|
||||
ColumnDefinitions.Add(new AyaPickListFieldDefinition
|
||||
{
|
||||
TKey = "Name",
|
||||
FieldKey = "username",
|
||||
FieldKey = "reportname",
|
||||
ColumnDataType = UiFieldDataType.Text,
|
||||
SqlIdColumnName = "auser.id",
|
||||
SqlValueColumnName = "auser.name",
|
||||
SqlIdColumnName = "areport.id",
|
||||
SqlValueColumnName = "areport.name",
|
||||
IsRowId = true
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user