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
I'm glad to see the compatibility update, but I think something was removed that shouldn't have been.
dynamic_raw_id.widgets.DynamicRawIDMultiIdWidget.value_from_datadict doesn't exist anymore, and when I save a model with dynamic_raw_id_fields = (my_field), values like this:
33,22,11
Get transformed to this:
3,3,,2,2,,1,1
Causing an invalid list error with "Enter a list of values." displayed.
Poking around in the code, I found that restoring the missing function above, removed here, restores the expected behavior.
I'm glad to see the compatibility update, but I think something was removed that shouldn't have been.
dynamic_raw_id.widgets.DynamicRawIDMultiIdWidget.value_from_datadict
doesn't exist anymore, and when I save a model withdynamic_raw_id_fields = (my_field)
, values like this:33,22,11
Get transformed to this:
3,3,,2,2,,1,1
Causing an invalid list error with "Enter a list of values." displayed.
Poking around in the code, I found that restoring the missing function above, removed here, restores the expected behavior.
(Edit - PR is up.)
The text was updated successfully, but these errors were encountered: