I'm using ng-admin with a rest API,
I have multiple referenced lists which are update frequently in the server side.
Is there a way to refresh referenced lists every 5 seconds or so using ng-admin?
EDIT: I already know about setInterval and…
We are using a Spring-Boot Spring-Data backend that utilizes JPARepositories with the @RepositoryRestResource annotation. We would like to administer the tables in these repositories (e.g. CRUD) through a javascript frontend without having to go…
I try to make custom template listView, for example:
import listTemplate from '../templates/listTemplate.html';
var users = admin.getEntity('users');
users
.listView()
.template(listTemplate)
.actions([])
.title('All users')
…
I've tried and succeded to set the fields dynamically in ng-admin by making a OPTIONS request to my api and using that json. So far so good. But when I tried to refactor this to put it in a class, the browser start realizing I was making a…
I have a referenced_list in my ng-admin app:
nga.field('profiles', 'referenced_list') // display list of related profiles
.targetEntity(profiles)
.targetReferenceField('user_id')
.targetFields([
…
I am using well know React Framework
https://marmelab.com/admin-on-rest/RestClients.html
Now I want to upload a file to firebase, I follow the doc and find an awesome uploading component
FileInput (FileInput allows to upload some files using…
I am using ng-admin to write a admin management. I met below issue, can somebody help me?
In my creationView, I would like to show different fields(text/video/pictures) according to the selection of "type" field. How I can make it?
var articles =…
I have an API (http://localhost:5000/v2/_catalog) returning a json structure as follows:
{
"repositories":
[
"start/imageA",
"start/imageA"
]
}
Now I want to parse the result with ng-admin. My admin.js (CORS is solved…
My code is like this:
function enableUser(Restangular, $state, notification) {
...
...
notification.log(
{{ "DISABLED_LOG_DISABLE" | translate }},
{ addnCls: 'humane-flatty-success' });
}
I found that it will display…
What is the correct way to include requirejs in ng-admin? A lot of the doucmentation uses require, but it's not loaded by default anymore.
I udpated bower.json dependencies to include requirejs and requirejs-text, and ran bower…
I have a small admin page setup with ng-admin. Creating elements works without any issues.
What I want to achieve though is that I sent the user to a different page where he can perform some action that will alter the created item(scraping some data…
In version 0.7 of ng-admin I could hide the Export button in list view with
.actions(['batch', 'create'])
However, in version 0.8 this also hides the newly introduced Add filter button. So my question is, how can I hide only the Export button in…
I have simple web form to collect data from a user. In my particular case i'm making use of the JSON field to collect a custom data structure.
Is it possible to change the height/size of a JSON field?