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
the autocomplete field 'category' in ChildInline will be initialized twice, so that two input box will appear.
in DJNesting.initAutocompleteFields, $('#' + prefix + '-group > .djn-items > *:not(.djn-empty-form)') .find('input[name^="' + prefix + '"][name$="-' + this + '"]') will also find input in child inline with the same name.
currently, removing the 'category' field from autocomplete_loopup_fields in ChildInline seems ok.
The text was updated successfully, but these errors were encountered:
As described, consider the case below:
the autocomplete field 'category' in ChildInline will be initialized twice, so that two input box will appear.
in
DJNesting.initAutocompleteFields
,$('#' + prefix + '-group > .djn-items > *:not(.djn-empty-form)') .find('input[name^="' + prefix + '"][name$="-' + this + '"]')
will also find input in child inline with the same name.currently, removing the 'category' field from autocomplete_loopup_fields in ChildInline seems ok.
The text was updated successfully, but these errors were encountered: