This is because the Publish date is the first input, when the modal is on, it gets the focus and opens automatically.
You can move Title input to the top
Hi,
You can use select2: https://select2.org/data-sources/ajax#request-parameters
Add parameters in AJAX request:
$('#mySelect2').select2({
ajax: {
url: 'https://api.github.com/orgs/select2/repos',
data: function (params) {
var query = {
filter: params.term,
country: $("#country").val() // your country selected value
}
return query;
}
}
});
Hi,
You can update the leptonx theme package version from 3.1.*-* to 3.1.0-rc.3
Hi,
There is a similar question here, you can check it https://support.abp.io/QA/Questions/5962/How-to-set-permissions-for-dynamic-menu-items
You can check the 8.1-final milestone. We'll probably release it next week https://github.com/abpframework/abp/milestone/100
: )
This is how ABP did :
https://github.com/abpframework/abp/blob/dev/modules/identity/src/Volo.Abp.Identity.Blazor/Pages/Identity/UserManagement.razor.cs#L230-L231 https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.BlazoriseUI/Components/AbpExtensibleDataGrid.razor#L121-L156
The suite generated code for Blazor UI doesn't support module object extension yet, we will improve it in 8.3 version.
: )
Hi,
Are you mean the old generated entities are lost when you generate a new entity?