Base solution for your next web application

Activities of "ismcagdas"

Hi,

You can do that by defining a custom filter. Please check this documentation <a class="postlink" href="http://www.aspnetboilerplate.com/Pages/Documents/Data-Filters#DocDefineCustomFilters">http://www.aspnetboilerplate.com/Pages/ ... tomFilters</a>

Hi,

You can use it like this

vm.getUsers = function (val) {
    return userService.getUsers({ filter: val }).then(function (response) {
        return response.data.items.map(function (item) {
            return item.userName;
        });
    });;
};

in view

<input type="text" ng-model="selected" uib-typeahead="user for user in vm.getUsersx($viewValue)" class="form-control">

Hi,

Why do you need to get records from AbpPermissions table ? In most cases, you dont need records in AbpPermissions table.

Hi,

If your assembly "App_Web_tuwlsmxq" is in the bin folder, the problem is probably related to some missing installation on the server or ISS configuration.

Is there any other AspNet website running on the same server ?

Can you also check the target framework of the projects in your solution. It might be 4.6.1 and that might be a problem as well.

Answer

Hi,

It was LocalClockProvider before but changed in release 0.9.7.0 <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/releases/tag/v0.9.7.0">https://github.com/aspnetboilerplate/as ... g/v0.9.7.0</a> with issue #1161 which is a breaking change.

You can set it to LocalClockProvider like

Clock.Provider = new LocalClockProvider();

in the first line of Application_Start method of your Global.asax.

Answer

Hi,

Which Clock provider do you use ? You can find it in ApplicationStart of Global.asax.

There are 3 clock providers in Abp, UtcClockProvider, LocalClockProvider and UnspecifiedClockProvider. You should probably use LocalClockProvider.

Hi,

You are right, creating a tenant for eah user is not a good way. Instead of features and editions, you can use permissions and settings which are more convenient.

Hi,

AspNet Zero does not have such a feature, you can use a batch insert library like EntityFramework.Extended. We haven't tried any of them but I think you can find a a good one.

Hi,

You need to include bootstrap confirmation script to your project. It is not included by default.

you can find it under metronic theme "assets/global/plugins/bootstrap-confirmation/bootstrap-confirmation.min.js"

Hi,

Can you check the value of customErrors on web.config ? It's value should be "On".

Showing 12371 to 12380 of 12724 entries