editor.autoComplete

editor.autoComplete

morganrobmorganrob Posts: 18Questions: 7Answers: 2

https://editor.datatables.net/plug-ins/field-type/editor.autoComplete

I have this working fine with inline editing, but no autocomplete window is showing if I use the main modal editor. The autocomplete is making its ajax calls correctly, just the results window isn't showing. Is this a known issue or am I missing something?

This question has accepted answers - jump to:

Answers

  • allanallan Posts: 63,873Questions: 1Answers: 10,528 Site admin

    Could you post a link to a page showing the issue so I can check it out please?

    Thanks,
    Allan

  • Ulf HanssonUlf Hansson Posts: 3Questions: 0Answers: 1

    i am having the same problem

  • allanallan Posts: 63,873Questions: 1Answers: 10,528 Site admin

    Happy to take a look if you post a link to the page so I can check it out.

    Allan

  • boggeliboggeboggelibogge Posts: 1Questions: 0Answers: 1
    Answer ✓

    there seems to be a problem with z-index the list is there but behind the modal

  • Ulf HanssonUlf Hansson Posts: 3Questions: 0Answers: 1
    Answer ✓

    this fixed the problem
    .ui-autocomplete { position: absolute; cursor: default;z-index:2500 !important;}

  • l.garcia-fresca@texlarenovables.coml.garcia-fresca@texlarenovables.com Posts: 2Questions: 0Answers: 0

    This not fix the issue. Only first use is valid.
    When editor is invoked, the div containing it gets a z-index of 101 (picture1), and if you make changes in autocomplete field the options are correctly showed at z-index of 2500 (picture2).
    But after options in autocomplete field (Efternamn in link example) are showed at z-index 2500, if you click on editor dialog box then editor div goes to z-index of 2501 (one more than maximal index in web). (picture3).
    So next time autocomplete field is invoked, it is showed under editor again. It's neccessary to move the editor box to find the options. (picture4)

This discussion has been closed.