Browse Source

修复 Grid Column Editable 行内编辑字段值为空时不出现保存按钮

HE 4 years ago
parent
commit
43ea62e951
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Grid/Displayers/Editable.php

+ 1 - 1
src/Grid/Displayers/Editable.php

@@ -57,7 +57,7 @@ CSS
     protected function addScript()
     {
         $script = <<<JS
-$(".{$this->selector}").on("click", function() {
+$(".{$this->selector}").on("click focus", function() {
     $(this).next().removeClass("hidden");
 }).on('blur', function () {
     var icon = $(this).next();