Hi, we're having an issue Ignite UI autocomplete input text fields.
we want to input field have autocomplete with history submit
https://www.w3schools.com/tags/att_input_autocomplete.asp
i try set attribute autocomplete= "on" but not working
seem the autocomplete only working with input text have name attribute
sorry my bad english.
thank for any help
Hello Phan,
Thanks for contacting Infragistics support.
Could you give me more details on your approach. Where exactly you are trying to use an autocomplete action.
Is it somewhere on the IgniuteUI controls, if yes, could you please tell me on which exactly you are trying to apply it.
I'm looking forward for your reply.
Hi,
The problem is occur on IE browser 11.For example, I have a simple form like this:
@using (Html.BeginForm("", "", FormMethod.Post)){ <div> @Html.LabelFor(model => model.Username) @(Html.Infragistics().TextEditorFor(model => model.Username).Render()) </div> <div> @Html.LabelFor(model => model.Email) @(Html.Infragistics().TextEditorFor(model => model.Email).Render()) </div> <div> <input type="submit" value="Submit" /> </div>}
When I submit the form, the values of the textbox are not saved in the browser. -> this is my problem
Although I try to add autocomplete attribute to this form, but not working:@using (Html.BeginForm("", "", FormMethod.Post, new { autocomplete = "on" }))
I also try create a simple form (not using Infragistics - like this), of course it work fine.
Thank you.