Questions tagged [admin-on-rest]

Use it for questions about the admin-on-rest admin framework for React.js

Usage questions about the admin-on-rest framework.

501 questions
-1
votes
1 answer

Updating admin-on-rest version

In my package.json it says I have a admin-on-rest installed 0.9.4 version. We want to update the version of it. How to do it? I have tried using npm update but seems not working. I wanted to add the feature for custom toolbar.
Panna Ahmed
  • 11
  • 1
  • 4
-1
votes
1 answer

Generate dynamically forms with admin-on-rest

i try to generate dynamically forms on admin-on-rest but i really don't have idea how generate it. I try: class MultipleChoice extends Component { constructor(props) { super(props); this.state = { inputs: ['input-0'] }; } render() { …
-2
votes
1 answer

Not able to integrate Admin on rest with my rest api

I have created a rest api in express which returns the customers. And I am trying to use Admin on rest to show them in on admin panel. I am not able to display all the customers but only last customer is getting displayed. I am not sure what is the…
-2
votes
1 answer

Admin on rest add new resource to store dynamically

My project is structured like this. As you can see there are three resources(posts, users, comments) defined. So you cannot perform CRUD operations on any other resource. I am not using any custom clients (using aor-loopback rest client) I would…
-2
votes
1 answer

Duplicate Requests via Admin On Rest

Not sure if anyone else has experienced this, but for some reason when making requests (get/post) I'm seeing duplicate requests in the network tab of Chrome developer tools, and my server is clearly getting hit twice. I added in the middleware for…
Keith V
  • 680
  • 4
  • 13
-3
votes
2 answers

optimized array an object to a select admin on rest

How can I do a for with the array? and not doing it as I have it is not optimal, because it is a manual method and I want to optimize it const choices = [ { id: '1', name: '1' }, { id: '2', name: '2' }, { id: '3', name: '3' }, { id:…
1 2 3
33
34