Base solution for your next web application

Activities of "ismcagdas"

Hi,

Thank you for informing us, I have reproduced this error and created an issue about it. Please follow <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/issues/395">https://github.com/aspnetzero/aspnet-zero/issues/395</a>.

Hi,

I couldn't understand the problem very well. You can redirect to "Mpa/BuilderInformation" with any parameters you want when user clicks a row in the grid.

In the jtable definition, use it's display option. See <a class="postlink" href="http://jtable.org/ApiReference/FieldOptions#fopt-display">http://jtable.org/ApiReference/FieldOpt ... pt-display</a>.

Your display function will be something like this.

display: function (data) {
        return '<a href="@Url.Action("Index","BuilderInformation",new {area = "MPA"})">Go To Builder</a>';
    }

Hi,

In your web api module there is this line of code.

//Automatically creates Web API controllers for all application services of the application
Configuration.Modules.AbpWebApi().DynamicApiControllerBuilder
    .ForAll<IApplicationService>(typeof(Smart_campusApplicationModule).Assembly, "app")
    .Build();

This only register app services for your Smart_campusApplicationModule. You need to register your other app services using the same method.

Answer

Hi,

Do you return TotalCount of found records in the output of GetMortgageCompanies method ? You can use PagedResultDto<YourListDto> as the result of GetMortgageCompanies method (use PagedResultOutput if you are using ABP version under 1.0).

Hi,

Can you check the executed sql query via SQL query profiler ? If you cannot solve the problem, can you send a screenshot of your ListValues database table ?

Hi,

This is not related to ABP but AspNet. I have searched on the internet and found this issue <a class="postlink" href="https://github.com/aspnet/Security/issues/780">https://github.com/aspnet/Security/issues/780</a>.

It seems like you also need to set IssuedUtc as well.

Provider = new CookieAuthenticationProvider
{
    OnResponseSignIn = signInContext =>
    {
        signInContext.Properties.IssuedUtc = DateTime.UtcNow;
        signInContext.Properties.ExpiresUtc = DateTime.UtcNow.Add(TimeSpan.FromSeconds(60));
    }
}

Hi,

There must be a [*ViewBase] class in your Web project under Views folder. Add a property to it like this.

public ITaskAppService TaskAppService { get; private set; }

then set it in the constructor of your ViewBase's constructor like this.

TaskAppService = IocManager.Instance.Resolve<ITaskAppService>();

Then you should be able to use @TaskAppService in your cshtml files.

Hi,

Yes, that is possible. You can store more than one tenant's data in the host database and any tenant's data in a seperate database using database per tenant architecture.

You need to set "ConnectionString" for tenants you want to store on seperate database when creating tenants.

Hi,

Can you send your project to <a href="mailto:[email protected]">[email protected]</a> ? Since you have a lot of errors on your project, it's better to take a look at them like that.

And please write your problems in the email as well.

Thanks.

Hi,

For the first question, yes you need to override each method and add attributes on them. We have created an issue about it, you can follow this issue and delete your overrides when we finish this. <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/1567">https://github.com/aspnetboilerplate/as ... ssues/1567</a>

For your second question, I think it is the only way for now :)

Showing 11981 to 11990 of 12740 entries