Hi Abu,
Is there a solution to disable chrome autofill ?
chrome need "autocomplete=false" instead of "off" to disable autofill.
$col['editoptions']["autocomplete"] = "False"; is not working
for now i use
$opt["add_options"]["afterShowForm"] = 'function ()
{$("#CPostal").attr("autocomplete", "false");}
to disable it but it's quite annoying , is there any other possibilities ?
regards,
1 Answers
The chrome autofill function is somewhat buggy,
see http://stackoverflow.com/questions/12374442/chrome-browser-ignoring-autocomplete-off
So, if afterShowForm is working for you, would recommend to stick with it.
Your Answer