Просмотр исходного кода

fix: textarea valid error msg not show

wangweimin 5 лет назад
Родитель
Сommit
139f6af692
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      pywebio/html/js/pywebio.js

+ 2 - 2
pywebio/html/js/pywebio.js

@@ -463,7 +463,7 @@
                 }
             }
 
-            var input_elem = this.element.find('input,select');
+            var input_elem = this.element.find('input,select,textarea');
             if (input_idx >= 0)
                 input_elem = input_elem.eq(input_idx);
 
@@ -629,7 +629,7 @@
     TextareaInputController.prototype.update_input = function (spec) {
         var attributes = spec.attributes;
 
-        this.update_input_helper(-1, attributes);
+        this.update_input_helper.call(this, -1, attributes);
     };
 
     TextareaInputController.prototype.get_value = function () {