提交 6aa691a9 编写于 作者: 蔡祥熠

Merge branch 'fix/ipaddress_autocomplete' into 'wrdp'

Merge of fix/ipaddress_autocomplete 修复IP自动填充问题 to wrdp

See merge request o2oa/o2oa!6354
......@@ -871,7 +871,11 @@ MWF.xApplication.Org.PersonExplorer.PersonContent.BaseInfor = new Class({
}.bind(this));
tdContents[12].setStyles(this.style.baseInforContentNode_edit).empty();
this.ipAddressInputNode = new Element("input", {"styles": this.style.inputNode, "placeHolder": this.explorer.app.lp.ipAddressPlaceHolder, }).inject(tdContents[12]);
this.ipAddressInputNode = new Element("input", {
"styles": this.style.inputNode,
"placeHolder": this.explorer.app.lp.ipAddressPlaceHolder,
"autocomplete": "off"
}).inject(tdContents[12]);
this.ipAddressInputNode.set("value", (this.data.ipAddress));
......
......@@ -43,7 +43,7 @@ MWF.xApplication.Org.LP = {
"name": "Name",
"description": "Description",
"ipAddress" : "IP Address",
"ipAddressPlaceHolder" : "Only the matching ip address can login to the account. Separate multiple values with \",\"",
"ipAddressPlaceHolder" : "Only the matching ip can login to the account. Separate multiple values with \",\"",
"ipAddressIncorrectNotice" : "IP address format is incorrect:",
"createSubCompany": "Create sub company",
......
......@@ -43,7 +43,7 @@ MWF.xApplication.Org.LP = {
"name": "名称",
"description": "描述",
"ipAddress" : "登录IP",
"ipAddressPlaceHolder" : "如果不为空,匹配的ip地址才能登录该账号,用“,”分隔多值",
"ipAddressPlaceHolder" : "如果不为空,匹配的ip才能登录该账号,用“,”分隔多值",
"ipAddressIncorrectNotice" : "IP地址格式不正确:",
"createSubCompany": "创建子公司",
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册