5 Answer(s)
-
0
Hi, unfortunately, we haven't implemented the CMS Kit Pro module for Angular UI. It's only supported on MVC/Razor Pages & Blazor for now.
Regards.
-
0
thanks so if i make this abp new MyProjectName -t app-pro -u angular --with-public-website --database-provider ef this is will make .net core as backend and angular as front end and --with-public-website: Includes a public MVC website for CMS Kit Pro. my question is mvc where created .net core backend and by default it will has links for cms kit pro links i mean when run .net core backend i can find link for Page Management and if create new page it will appear in angular ?
-
0
thanks so if i make this abp new MyProjectName -t app-pro -u angular --with-public-website --database-provider ef this is will make .net core as backend and angular as front end and --with-public-website: Includes a public MVC website for CMS Kit Pro.
Yes, that's right 👍
my question is mvc where created .net core backend and by default it will has links for cms kit pro links i mean when run .net core backend i can find link for Page Management and if create new page it will appear in angular ?
No, since the related module was added to the Public Web application (MVC / Razor Pages), the page will only appear in your public web application and you will not be able to see the related page in your angular application. They are two different and independent applications.
Regards.
-
0
i mean if we created our project .net core and mvc as ui can we by any way show added page by mvc cms kit pro in angular ? and can we mix .net core and mvc and angular ?
-
0
i mean if we created our project .net core and mvc as ui can we by any way show added page by mvc cms kit pro in angular ? and can we mix .net core and mvc and angular ?
We have a view component for each feature and render it on the page. For example, if you want to use Page Feedback System, then there is a view component named
PageFeedbackViewComponent
and you render the related view component on the relevant page.So, if you want to show it in your angular UI, then you should create a controller, return the view component result and then send a request to the relevant endpoint and show it to your angular UI. But, we don't provide such a way by default, so you need to apply these steps and implement them yourself.
Regards.