Base solution for your next web application

Activities of "ismcagdas"

Hi,

Please follow the discussion here <a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/980">https://github.com/aspnetboilerplate/as ... issues/980</a>

Hi,

It's in the RoleAppService application service's GetRoleForEdit method. See it here <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/blob/7773db5b26cdb3d4dc6ece9be17a4c41ee6d5a4d/src/MyCompanyName.AbpZeroTemplate.Application/Authorization/Roles/RoleAppService.cs">https://github.com/aspnetzero/aspnet-ze ... Service.cs</a>

var permissions = PermissionManager.GetAllPermissions();

Hi,

We are actually working on similar issues,

<a class="postlink" href="https://github.com/aspnetboilerplate/aspnetboilerplate/issues/936">https://github.com/aspnetboilerplate/as ... issues/936</a> <a class="postlink" href="https://github.com/aspnetzero/aspnet-zero/issues/170">https://github.com/aspnetzero/aspnet-zero/issues/170</a>.

It will be in the next release ABP & Zero as well.

Hi Hasan,

You need to remove "OAuthBearerOptions" static property from TryController and use "WebApi.Controllers.AccountController.OAuthBearerOptions" in your TryController.

Hi,

I think this is not jTable, it's angular ui grid. There is an open issue for this <a class="postlink" href="https://github.com/angular-ui/ui-grid/issues/3020">https://github.com/angular-ui/ui-grid/issues/3020</a>.

We are also following this issue, we will fix it when this issue is resolved.

Hi,

After serializing form, you need to manually handle to child data.

This post might give you an idea. <a class="postlink" href="http://stackoverflow.com/questions/4034103/serialize-inputs-in-table-rows-jquery">http://stackoverflow.com/questions/4034 ... ows-jquery</a>

Answer

Hi,

There is an example of javascript tree in AspNet Zero role edit dialog. You can take a look at "permissionTree.js" directive for usage. It uses jstree javascript plugin internally.

I hope it helps.

Hi,

You need to inject your interface not the application class itself. If you want to inject your application service class, then your method must be virtual.

Hi,

Inject "IOnlineClientManager" in your class and then you can get online users of current tenant like this,

_onlineClientManager.GetAllClients().Where(u=> u.TenantId == AbpSession.TenantId);

I hope this helps.

Hi,

Just change your date-picker definition to

<input class="form-control date-picker" ui-jq="datepicker" type="text" value="" ngmodel="person.newPhone.dob" />
Showing 12701 to 12710 of 12779 entries