Base solution for your next web application

Activities of "ismcagdas"

Hi,

We dont have such a feature in our roud map right now. But you can simply implement it using feature system of ABP.

Just define value feature with name MaxActiveUserCount or something similar. Then you can assign different values for each tenant in tenant list page.

And check it when creating/editing users in UserAppService. You can take a look at value features here <a class="postlink" href="http://aspnetboilerplate.com/Pages/Documents/Feature-Management#value-feature">http://aspnetboilerplate.com/Pages/Docu ... ue-feature</a>

Hi,

You can take a look at angular ui grid documentation. It also contains an example which fits your needs. <a class="postlink" href="http://ui-grid.info/docs/#/tutorial/210_selection">http://ui-grid.info/docs/#/tutorial/210_selection</a>

Hi,

I haven't tried this but you can try this,

When creating WsFederationAuthenticationOptions just handle AuthenticationFailed by yourself,

Notifications = new WsFederationAuthenticationNotifications
{
    AuthenticationFailed = notification =>
    {
        notification.HandleResponse();
        return Task.FromResult(0);
    }
}

Hi,

I couldn't face a similar probem before, but could it be a firewall issue ? Can you try DTCPing tool ? More info here <a class="postlink" href="http://forums.asp.net/t/2084329.aspx?Problems+with+TransactionScope">http://forums.asp.net/t/2084329.aspx?Pr ... ctionScope</a>

Hi,

Instead of doing that, you can define EntityNote and EntityAttachment (you can give better names :)) entities. For example,

public class EntityNote {
   public string EntityId {get; set;}
   public string EntityType {get;set;}
   public string Note {get;set;}
}

Hi,

Is your service called from angular page ? If so, a javascript error on that page might cause this problem. Because parameters are logged like "{{vm.getFormattedParameters()}}".

Is that possible ?

Hi,

Can you try the solution offered in this forum topic ? #1088

Hi,

I think your ng-click in cell template should be like this,

ng-click="grid.appScope.deleteRecord(row.entity)"

Can you share the CheckErrors method of yours ?

Hi,

Can you check the response of GetAll request for angular service proxies. It looks like this,

Showing 12291 to 12300 of 12740 entries