Browse Source

Merge pull request #16007 from abpframework/dom-event-handlers

Compatible with `ExtraProperties`.
pull/16073/head
Enis Necipoglu 3 years ago
committed by GitHub
parent
commit
8defc1b49d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 3
      framework/src/Volo.Abp.AspNetCore.Mvc.UI.Theme.Shared/wwwroot/libs/abp/aspnetcore-mvc-ui-theme-shared/bootstrap/dom-event-handlers.js

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

@ -87,6 +87,9 @@
}
var name = $(this).attr("name");
var selectedTextInputName = name + "_Text";
if(name.indexOf(".ExtraProperties[") > 0) {
selectedTextInputName = name.substring(0, name.length - 1) + "_Text]"
}
var selectedTextInput = $('<input>', {
type: 'hidden',
id: selectedTextInputName,

Loading…
Cancel
Save