When we upgraded to 10.5 hello, the angular code just has errors in two files 'dynamic-entity-property.component.html' and 'dynamic-entity-property.component.ts', when i search for this error i found in asp.net zero support fixing for this but when we try it is not resolved. Can you please help? All the errors are in the screenshots (6 in total)
the link is not exist give me a 404
Severity Code Description Project File Line Suppression State Error CS1061 'SwaggerGenOptions' does not contain a definition for 'CustomDefaultSchemaIdSelector' and no accessible extension method 'CustomDefaultSchemaIdSelector' accepting a first argument of type 'SwaggerGenOptions' could be found (are you missing a using directive or an assembly reference?) Glyde.Web.Host C:\Users\HP\Desktop\Glyde\aspnet-core\src\Glyde.Web.Host\Startup\Startup.cs 333 Active
We recently upgraded to 10.4 and we noticed a new line of code in the startup.cs. Specifically we are getting an error with this line options.CustomDefaultSchemaIdSelector()
when we try to build the project with this line the project failed to build telling us its missing a reference. When we comment out the code the project builds successfully.
Cna we delete this line of code? if not what is the reference?
The below code in my index.js opens the modal Balloon1Modal when the button with id="Balloon1ModalButton" is clicked. I need to pass some data from my index.js to my modal so that it can use that data to populate the table inside my modal. What additions can i make to the below code so that i can pass a variable as a parameter?
(function () {
var _balloon1Modal = new app.ModalManager({
viewUrl: abp.appPath + 'Mpa/DealerDashboard/Balloon1Modal',
scriptUrl: abp.appPath + 'Areas/Mpa/Views/DealerDashboard/_Balloon1Modal.js',
modalClass: 'Balloon1Modal'
});
$('#Balloon1ModalButton').click(function (e) {
e.preventDefault();
_balloon1Modal.open();
});
})();
Thank you