editautocomplete

What is the html tag to use for the template to use editautocomplete

tried <div> and <span> in both these cases the dropdown does not appear below the input box but somewhere else 
<select does not work at all and <input just shows it up as normal input 

Hi,


The correct HTML tag to use is indeed div, but please make sure to set the position property to relative or absolute in the CSS definition.
The PDF manual will be also be extended to reflect this requirement.

Example:
    <style>
    #autocomplete
    {
        position:relative;
    }
    </style>
  </head>
  <body>
  <div id="autocomplete"></div>
  </body>

Bart Holvoet2020-03-09 15:29:16

Checked it out but I am still having problems

Send you demo by email

We will follow-up by email.

Thanks for the update I received by email

Just for the benefit of other people if they have the same problem 

   <style>
    #autocomplete
    {
        position:relative;
    }
    </style>

works
but inline  style ="position:relative;" in the html does not work

We addressed this so that inline will also work

thanks