Base solution for your next web application

Activities of "alirizaadiyahsi"

Hi,

JTable already have localization, it is enough to add just an xml that contain Danish localization texts with VALID CULTURE CODES Also, check this document: <a class="postlink" href="https://aspnetzero.com/Documents/Development-Guide-Angular#localization">https://aspnetzero.com/Documents/Develo ... calization</a>

Hi,

There is no built-in solution, but you can add this option to ModalManager.js. And also, you can send parameter with Url to server-side. For example:

var _MyCustomModal = new app.ModalManager({
    viewUrl: abp.appPath + 'Mpa/MyCustomModal?myParam=16777328',
    ...

Do you want to merge Host and AngularUI and one publish/deployment?

You can follow microsoft documents to deploy your project. <a class="postlink" href="https://docs.microsoft.com/en-us/aspnet/core/publishing/iis">https://docs.microsoft.com/en-us/aspnet ... ishing/iis</a>

Hi,

which version did you download, Angular or JQuery?

Hi,

Actually it is not directly .woff errors. You should use CssRewriteUrlWithVirtualDirectoryTransform to fix image and font file references in CSS corrupts when bundled. Check this conversation: #71

Hi,

Following deployment guide hepls you. <a class="postlink" href="https://aspnetzero.com/Documents/Development-Guide-Angular#deployment">https://aspnetzero.com/Documents/Develo ... deployment</a>

Hi,

In your host project, there may be missing configuration for CorsOrigins settings in appsettings.json. Check following lines, if they have true configurations?

"App": {
    "ServerRootAddress": "http://localhost:22742/",
    "ClientRootAddress": "http://localhost:4200/",
    "CorsOrigins": "http://localhost:4200,http://localhost:49152"
  },

EntityFramework Core does not support lazy-loading. Check this: <a class="postlink" href="https://docs.microsoft.com/en-us/ef/core/querying/related-data#lazy-loading">https://docs.microsoft.com/en-us/ef/cor ... zy-loading</a>

For using eager-loading, check this tutorial (Load one entity and its related entites): <a class="postlink" href="https://msdn.microsoft.com/en-us/library/jj574232(v=vs.113">https://msdn.microsoft.com/en-us/librar ... 2(v=vs.113</a>).aspx

<cite>exlnt: </cite> I just replicated the problem with a fresh template download just now.

Steps:

  1. Download .Net Core 1.1 MVC template from ABP site.
  2. Open solution and add connection string
  3. Set Migrator project as startup project
  4. Run solution, allow migrator to create host and tenant DB
  5. Run app, all normal, ABP default site opens and works normally
  6. Add custom entity into MyProject.Core project
  7. Add custom entity DBSet entry into context file in MyProject.EntityFrameworkCore project
  8. Run the application - You get error, app does not load.
  9. Try to add migration for the custom entities - You get error, migration NOT created.
  10. Remove all references to custom entities from context file in MyProject.EntityFrameworkCore project
  11. Run app - You get error, app does not load
  • At step 8, application should work without update-database (if there is no any db operation about custom entity).
  • Before step-8, are you getting any compile time errors?
  • And one last thing, could you share your customentity that you added?
Showing 261 to 270 of 369 entries