Browse Source

Update dom-event-handlers.js

pull/6159/head
Halil İbrahim Kalkan 6 years ago
parent
commit
7ed695495f
  1. 8
      framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js

8
framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js

@ -91,13 +91,11 @@
},
processResults: function (data) {
var retVal = [];
var items = [];
if (itemsPropertyName == "") {
items = data;
}
else {
var items = data;
if (itemsPropertyName) {
items = data[itemsPropertyName];
}
items.forEach(function (item, index) {
retVal.push({
id: item[displayValue],

Loading…
Cancel
Save