問題タブ [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.
drag-and-drop - react-dnd を admin-on-rest に統合する方法は?
誰かがreact-dndまたは別のlibを残りの管理者に統合しようとしましたか? 参照配列フィールド内でデータグリッドをドラッグ可能にしたかったのです。
データグリッドをオーバーライドする独自のコンポーネントを作成する必要がありますか、それとも簡単な方法がありますか?
ありがとう!
admin-on-rest - リソースのすべての CRUD アクションを特定の外部キーにリンクするにはどうすればよいですか?
バージョン: Next
(react-admin)
リソースClasses
とStudents
.
「Students」には「Classes」への外部キーがあります: class_id
。
そのため、各行 (クラス) には、[クラスの生徒を表示/編集] ボタンがありますList
。Classes
このボタンをクリックすると、次のコードが表示されます。
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?