Base solution for your next web application

Activities of "paddyfink"

Hello, I'm using kendo ui with ABP.

If you have a SPA application, don't use kendo asp.mvc wrapper but kendo ui angular directives

I asked myself the same question few weeks ago. According to the DDD and as Halik suggested, It should be in a project Infrastructure and the infrastructure interfaces in the core Layer.

But instead of creating a new project, I just renamed the project xxx.EntityFramework to xxx.Infrastructure because that what it is. Infrastructure layer is for external sercices like Acces to the database or 3rd-party web services. So it should be Infrastructure instead of EntityFramework

Ok thanks.

DO you know how we can set the height of the jtable to make it full windows height?

your object vm.shiftss is a list but your your service expect an object.

You need to pass an object. For example : shiftsService.create(vm.shiftss[0])

Hello Halil,

There is bug with the table. If you change the item per page to 50 for example, there is a weird behavior when you click the action button after scrolling down.

I have also a question regarding Jtable, since you also developped it. Is there a way to make the table having the full height of the browser?

Thx

How would you explain the language management feature? I'm not sure to understand the logic. What the base value and the target value represents?

Hello,

If i modify a translation, both the base and target value are modified. Is it a bug? I was expecting the base value to never change and stay as defined in the xml file.

Thx

Answer

Hello ABP team,

I had a similar question, so I will ask it on this thread.

In a future scenario, I would like users to be able to sign in without specify the tenant. And in the case they belongs to multiple tenants, they would be able to select, and also change tenant via the menu like Duncan suggest.

What would be the options to accomplish that? Write a custom AbpUserManager class?

Answer

If you deploy from visual studio, you just have to check the option "Update database". If you deploy from TFS with CI, There is a special manipulation to do to make the migration works

Personally i'm not a big fan of code first migration. I don't like having to generate a file just because I added a new column in a database, or create index with C#. I only use code migration to update my db during the develpment. For the deployment I use a DB projec. I use Release management in TFS to deploy both the website and the database to the differents envionments.

<a class="postlink" href="https://msdn.microsoft.com/library/vs/alm/release/examples/azure/azure-web-apps-from-build-and-release-hubs">https://msdn.microsoft.com/library/vs/a ... lease-hubs</a> <a class="postlink" href="https://msdn.microsoft.com/library/vs/alm/release/examples/azure/azure-web-apps-and-sql-db">https://msdn.microsoft.com/library/vs/a ... and-sql-db</a>

Showing 11 to 20 of 35 entries