Unfortunately, that did not work either.
Sure, I was trying to do something like below
<td width="12.5%" ng-if="tar.day1 != null" class="yes-record">
<span class="label label-info" popover-title="Time Given: {{tar.time}}" uib-popover-html="Given By: {{tar.day1}}" popover-placement="top" popover-trigger="mouseenter click">Entries Exist</span>
</td>
From what I was reading in the documentation at <a class="postlink" href="https://angular-ui.github.io/bootstrap/">https://angular-ui.github.io/bootstrap/</a> it seems like I am doing it correctly. But I must be missing something.
I should have read further down. All I needed to do was add the size parameter. For example like below...
var modalInstance = $uibModal.open({
templateUrl: '~/App/tenant/views/client/businessModal.cshtml',
controller: 'tenant.views.client.businessModal as vm',
backdrop: 'static',
size: 'lg',
resolve: {
mrn: function () {
return clientId;
}
}
Perfect thanks
The reason, why I am trying to do it, is to give a web front to an old legacy system.
I did something very similar. Thank you for the suggestion.
I am having a hard time figure out how to filter the admin users since you a user can have many roles. Would you have any code examples in the service layer?
Excellent, thank you
Awesome to hear. I am going to try and implement it myself as I am going through making other security enhancements.
For example, I would like to do something like this. <a class="postlink" href="http://www.jlum.ws/post/2014/5/27/user-lockouts-in-aspnet-identity-2-with-aspnet-mvc-5">http://www.jlum.ws/post/2014/5/27/user- ... pnet-mvc-5</a>
Since you use Asp.net Identity it should be possible. But I am confused on one part. In that article the three lines they add to the IdentityConfig.cs file I am wondering where something like that would go in Asp.net Zero project.