Skip to content

Browser Autofill interference


Web browser Autofill feature can interferent with the HTML input such as the datepicker.
 
You can turn off the Autofill by adding an event:

$FilterAfterChange = <<<FILTERAFTERCHANGE
function (event, status, postData)
{          
    $("input.ui-corner-all.input-elm.hasDatepicker").attr("autocomplete","off");
}
FILTERAFTERCHANGE;
$dg->add_event("jqGridFilterAfterChange", $FilterAfterChange);

$(function(){                  
$("input.ui-widget-content").attr("autocomplete","off");      
});



Feedback and Knowledge Base