Base solution for your next web application

Activities of "reji79"

I am wondering any facility exists in the framework to check user permission at client side. I have anangular application and want to redirect to an error page if user tries to access a page that not allowedbecause of the permission. The menu is currently built using permission, but user can directly type path and access the page. But they wont be allowed to save because I am implementing AbpAuthorize attribute at server side. But I do not want show them the page at first place if they have no access.

Hello,

I have a setting that stores a network path and that needs that to be visible at client side. (for example "\BOSSQL018DP\Exports\DEV") However when I set IsVisibleToClients=true, it gives javascript error. I guess the \ escape character is not handled within framework?

thanks

Hi Hikalkan

First up all, thank you for the framework and that saved me lot of work.

I am looking for your suggestion to implement authentication & permission.

We want to use windows authentication in the application that has a table of users, containing their account names, and their respective roles in the application. So I am looking to validate authenticated users against this table and then on subsequent requests check their permission/role to access the views.

Also store the validated users details and pass with each requests.

What is the best way to go about on implementing this.

thanks Andy

Hello,

I need a help. I am trying to use ABP in a new project and Ii am not able to get the bootstrap modal working. I have used the following code. It is working in a simple application with only JQuery, bootstrap as references. May be some other script in ABP is blocking this. Please can you help me .

thanks RJ

<a href="#" class="btn btn-lg btn-success" data-toggle="modal" data-target="#basicModal">Click to open Modal</a>

<div class="modal fade" id="basicModal" tabindex="-1" role="dialog" aria-labelledby="basicModal" aria-hidden="true"> <div class="modal-dialog"> <div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button> <h4 class="modal-title" id="myModalLabel">Modal title</h4> </div> <div class="modal-body"> <h3>Modal Body</h3> </div> <div class="modal-footer"> <button type="button" class="btn btn-default" data-dismiss="modal">Close</button> <button type="button" class="btn btn-primary">Save changes</button> </div> </div> </div> </div>

Showing 1 to 4 of 4 entries