Prevent EditBox from showing suggestions

I want to disable suggestions in editbox.
How can i achieve this?
@RAAng @huynhthuan @linrm @zzf_Cocos @slackmoehrle @nutrino

You can take a screenshot to show me which edit box is suggested


On clicking in blank(EditBox) a suggestion box appear with old inputs.
@muxiandong

Please add the following code to the code to turn off

if (!JSB) {
    let editbox = document.getElementsByClassName("cocosEditBox");
    editbox["EditBoxId_1"]["autocomplete"] = "off";
}
1 Like