You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When clicking on rows within an association and you have the link_to_record: true,
we go the right record ✅ but forget the association ❌ which makes the user experience inconsistent
This is especially the case with the global config.click_row_to_view_record = true which does the right thing on all non belongs-to columns, but forgets about the via_record_id parameter on belongs_to fields...
# resource 1 (table)field:columns,as: :has_many# resource 2 (columns)deffieldsfield:foobar,as: :belongs_to,link_to_record: true# correctly will open the `column` resource (i.s.o. foobar) yet forgets about the table (resource 1)end
Current workarounds
switch all :belongs_to to :text and format_using in !view.form? but feels very dirty
The text was updated successfully, but these errors were encountered:
Feature
see https://www.loom.com/share/eb42935e2725476f945e60b79ff84d40
When clicking on rows within an association and you have the
link_to_record: true
,we go the right record ✅ but forget the association ❌ which makes the user experience inconsistent
This is especially the case with the global
config.click_row_to_view_record = true
which does the right thing on all non belongs-to columns, but forgets about the via_record_id parameter on belongs_to fields...Current workarounds
switch all :belongs_to to :text and
format_using
in!view.form?
but feels very dirtyThe text was updated successfully, but these errors were encountered: