admin-config icon indicating copy to clipboard operation
admin-config copied to clipboard

Configuration API to describe an administration interface. Used by ng-admin and react-admin.

Results 11 admin-config issues
Sort by recently updated
recently updated
newest added

Can you add an open source license to this project?

This fixes #57, and adds tests which a) demonstrate why this is required and b) should guard against regressions.

I tried to fix this issue: https://github.com/marmelab/ng-admin/issues/786

[Trying to resolve](https://github.com/marmelab/ng-admin/pull/938) this [issue](https://github.com/marmelab/ng-admin/issues/810#issuecomment-159996607).

Fixes ignoring references when extending reference field classes. now this works fine : ``` var ReferencedListField=nga.getFieldConstructor('referenced_list'); class CustomReferencedList extends ReferencedListField { constructor(name) { super(name); this._type = 'custom_referenced_list'; } } ```

Hi, Opening an issue to leave a trace for anyone who would have the same problem. Our users in France could use the date filter but a strange issue came...

When a listview has 0 items, `singleApiCall` still gets called. My REST API doesn't have a nice way to handle this 'dead' call.

I'm trying to create a custom `url` on an entity. The `identifierName` passed to my function seems to be of different types depending on where it was called from. I...

Currently, field can have a specified defaultValue to be used during entity creation. However, defaultValue can only be a constant. This makes it impossible to use client-side auto-generated defaults. While...

Hi, I'm trying to use `ng-admin` with an older browser (PhantomJS 1.9, backed by Safari 5). It doesn't have Array.find, so I'm using [this polyfill](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/find#Polyfill). However, this breaks `ng-admin` in...