-
Notifications
You must be signed in to change notification settings - Fork 244
Open
Description
Tested new v3.0.1 in Django admin but it's don't work correctly in the case of nested popups.
Steps I did:
- in ajax-select-multiple widget selected "add new" item
- opened new item popup window
- in new popup window select "add new" item, I fiiled data and saved
- popup 2 closes but in popup 1 nothing happens.
I propose problem is ajax-select.js code in line 244:
var input = $("#" + win.name.replace("__1", ""));
I changed to:
var input = $("#" + win.name.split("__")[0]);
And in my case it's now works.
Problem seems to be in enumerating of popups - every popup has unique number in the end "__1", "__2" etc.
Metadata
Metadata
Assignees
Labels
No labels