Hi,
I'm loading dynamically a view from MVC inside my angular application, all the kendo controls renders ok but if the view contains a window the window content apears 2 times , one inside the window and other at the end of the body (Image attached).
The same problem happens with a grid with editor popup (image 2 atached)
I followed the net core mvc getting started tutorial but for include all the js files I added this lines inside angular.json
"scripts": [
{
"input": "../Scripts/AppScripts/jquery.js",
"inject": false,
"bundleName": "jquery"
},
{
"input": "../Scripts/AppScripts/kendo.all.min.js",
"inject": false,
"bundleName": "kendo.all.min"
},
{
"input": "../Scripts/AppScripts/kendo.aspnetmvc.min.js",
"inject": false,
"bundleName": "kendo.aspnetmvc.min"
},
{
"input": "../Scripts/AppScripts/kendo.culture.de-DE.min.js",
"inject": false,
"bundleName": "kendo.culture.de-DE.min"
}
]
and in my index file inside head tag:
<
script
src
=
"jquery.js"
></
script
>
<
script
src
=
"kendo.all.min.js"
></
script
>
<
script
src
=
"kendo.aspnetmvc.min.js"
></
script
>
<
script
src
=
"kendo.culture.de-DE.min.js"
></
script
>
I created a sample project to reproduce the problem:
https://drive.google.com/file/d/1rydILf7WvVDiLUGZGRBfl4wjZihw2kbw/view?usp=sharing
inside home component.ts comment or un comment the lines :
this.loadUrl('/home/windowDemo');
// this.loadUrl('/home/index');
to see the problem in a view with a single window or in a sample table