問題タブ [react-admin]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
2 に答える
724 参照

drag-and-drop - react-dnd を admin-on-rest に統合する方法は?

誰かがreact-dndまたは別のlibを残りの管理者に統合しようとしましたか? 参照配列フィールド内でデータグリッドをドラッグ可能にしたかったのです。

データグリッドをオーバーライドする独自のコンポーネントを作成する必要がありますか、それとも簡単な方法がありますか?

ありがとう!

0 投票する
1 に答える
246 参照

admin-on-rest - リソースのすべての CRUD アクションを特定の外部キーにリンクするにはどうすればよいですか?

バージョン: Next(react-admin)

リソースClassesStudents.

「Students」には「Classes」への外部キーがあります: class_id

そのため、各行 (クラス) には、[クラスの生徒を表示/編集] ボタンがありますListClasses

このボタンをクリックすると、次のコードが表示されます。

The idea is that we need somehow to get a 'classId' value in all CRUD operations of the 'Student', so that we filter by 'classId' in List and use this classId as a disabled field in CREATE.

I tried 2 ways: localStorage or query params as you can see in the code.

But these are not good, not working as expected (query params are lost when CREATE redirects, etc.)

Any ideas?