IS it possible to disable autocomplete on 'Edit' modal?
IS it possible to disable autocomplete on 'Edit' modal?
Hi,
I would like to disable autocomplete on the input field of 'edit' modal. Right now when I select a row and edit it, the modal brings up the editable columns. One is a drop down field and another input field.
I would like the input field to not show any previous entries. How do I do it here as I don't see this input div?
Thank you
This discussion has been closed.
Replies
What AutoComplete library are you using (since there isn't one built into Editor)? What options have you used to configure it?
Allan
I am not using any autocomplete libraries.
What auto complete is it you want to disable then? Do you mean the browser's built in auto complete? If so, use the
autocomplete
attribute and set it tooff
. You can use theattr
option of thetext
field type to set it.Allan