Base solution for your next web application

Activities of "ismcagdas"

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" />

Hi,

Would you like to get count of online users of a tenant ?

Hi,

I have tried a simple scenario.

This is my test controller

public class TestController : ZeroSupportControllerBase
{
	public JsonResult GetTestData()
	{
		return Json(new { Name = "ismail", Age = 1 });
	}
}

When i make a post request to this action (http://localhost:6240/Test/GetTestData) from postman chrome extension i get the following result.

{
  "success": true,
  "result": {
    "name": "ismail",
    "age": 1
  },
  "error": null,
  "unAuthorizedRequest": false
}

It should work the same way with android.

Hi,

Can you share your controller action ?

Showing 12691 to 12700 of 12766 entries