Changes between Initial Version and Version 1 of Ticket #32063


Ignore:
Timestamp:
Oct 1, 2020, 11:17:34 PM (4 years ago)
Author:
Mariusz Felisiak
Comment:

windowname_to_id was a workaround for IE and a part of private API. Admin doesn't support IE anymore, see 8b30360322d4de6687e17ab267a856db4e3c78a6. You should report this in django-dynamic-raw-id not in Django itself.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #32063

    • Property Component Uncategorizedcontrib.admin
    • Property Resolutioninvalid
    • Property Status newclosed
  • Ticket #32063 – Description

    initial v1  
    11I am using the django-dynamic-raw-id in my project which calls the windowname_to_id function that user to be in RelatedObjectLookup.js for in the js/admin folder.  After upgrading to Django 3.1.1 the windowname_to_id function is no longer there.  Was this removed on purpose and I should see other solutions?
    2 
     2{{{
    33    function windowname_to_id(text) {
    44        text = text.replace(/__dot__/g, '.');
     
    66        return text;
    77    }
     8}}}
Back to Top