I see there are red underline in grammar error text on easyui textbox or textarea (on datagrid too), like this
I try to mod the easyui.min.js and adding
spellcheck=\"false\"
like code below
init:function(_7bf,_7c0){
var _7c1=$("<input type=\"text\" spellcheck=\"false\" class=\"datagrid-editable-input\">").appendTo(_7bf);
if(_7c1[name]&&name!="text"){
return _7c1[name](_7c0);
}else{
return _7c1;
}
}
it works but do you want consider to add this as easyui builtin optional in the future?
Thank you in advance