Hi Debleena,
Thanks for the update.
Query: “It is not working yet. It holds the cache browser login credential value as username in the input field”
We have analyzed the shared screenshot and found that you are using dialog editMode. We are able to reproduce the reported issue while preparing sample as per your screenshot. Kindly refer the below code example to disable autocomplete for element inside the dialog.
function complete(args) {
if(args.requestType == "beginedit" || args.requestType == "add"){
// to hide autoComplete for specific column input box
var id = this.element.attr("id");
//Grid ID + ColumnName
//we have removed the autocomplete for CustomerID column
$("#" + id + "CustomerID").attr("autocomplete", "off");
// if you are using dialog template kindly use the elment id to diable the autocomplete
}
}
|
If you still facing issue, kindly share the following details which will be helpful for us to validate the reported issue at our end
- Share the Grid rendering code
- Share the screenshot of script error in console window (if any).
- Share the video demonstration of reported issue.
- If possible share the issue reproducible sample.
Regards,
Vignesh Natarajan.