Hi,
You can consider using the static CSharp proxy: https://docs.abp.io/en/abp/latest/API/Static-CSharp-API-Clients
As @Sturla said,
Please provide the logs.
If you don't want to set multiple and maximumSelectionLength
You can try this:
customModal.onOpen(function() {
var modalId = customModal.getModalId() + 'Container';
$("#customSelect").select2({
tags: true,
dropdownParent: $("#" + modalId +" .modal.fade"),
insertTag: function(data, tag) {
data.push(tag);
}
});
});
Hi,
There is no problem
customModal.onOpen(function() {
var modalId = customModal.getModalId() + 'Container';
$("#customSelect").select2({
tags: true,
dropdownParent: $("#" + modalId),
insertTag: function(data, tag) {
data.push(tag);
},
multiple: "multiple",
maximumSelectionLength:1
});
})
<select class="custom-select form-control" id="customSelect" asp-items="@Model.SelectListItems" title="Custom select"></select>
Hi,
I will check it.
Hi,
It may be related to your project, Can you use ABP suite to create a new minimal project to reproduce this problem and share it with me? shiwei.liang@volosoft.com. Thanks
Hi,
Is it possibly because we are not using Redis ?
For the Tiered project, you must use the distributed cache, like Redis.
Hi,
Hi,
We created an internal issue for this and will check it.