Commit f1c7941f by Kang Donghun

Merge branch 'feature/1.0_check_web_dev_imai' into 'feature/1.0_check_web_dev'

#50944 メッセージ送信で、最大文字列以内でアラート表示される

See merge request !111
parents 971a5a7d 13dd1873
......@@ -32,13 +32,13 @@ var ValidationUtil = {
// check text min length
CheckMinLengthForByte: function (value, len) {
if (this.GetByteCount(value) < len) return false;
if (value.length < len) return false;
return true;
},
// check text max length
CheckMaxLengthForByte: function (value, len) {
if (this.GetByteCount(value) > len) return false;
if (value.length > len) return false;
return true;
},
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment