Changed Roo/bootstrap/Input.jsRoo/grid/AbstractGridView.jsRoo/grid/Grid.js
authorAlan Knowles <alan@roojs.com>
Tue, 23 Mar 2021 06:15:26 +0000 (14:15 +0800)
committerAlan Knowles <alan@roojs.com>
Tue, 23 Mar 2021 06:15:26 +0000 (14:15 +0800)
Roo/bootstrap/Input.js
Roo/grid/AbstractGridView.js
Roo/grid/Grid.js

index 6ff1d93..5e94b41 100644 (file)
@@ -99,7 +99,6 @@ Roo.bootstrap.Input = function(config){
         /**
          * @event paste
          * Fires after the user pastes into input
-         * @param {Roo.form.Field} this
          * @param {Roo.EventObject}  e The event Object
          */
         paste : true
index b0fa20b..ff45ea2 100644 (file)
@@ -96,5 +96,5 @@ Roo.extend(Roo.grid.AbstractGridView, Roo.util.Observable, {
                          this.splitSelector, cid, " {\n}\n");
         }
         return Roo.util.CSS.createStyleSheet(ruleBuf.join(""), rulesId);
-    }
+    } 
 });
\ No newline at end of file
index 804f069..99bf3ea 100644 (file)
@@ -755,6 +755,11 @@ Roo.extend(Roo.grid.Grid, Roo.util.Observable, {
     getView : function(){
         if(!this.view){
             this.view = new Roo.grid.GridView(this.viewConfig);
+           this.view.relayEvents(this, [
+               "beforerowremoved", "beforerowsinserted",
+               "beforerefresh", "rowremoved",
+               "rowsinserted", "rowupdated" ,"refresh"
+           ]);
         }
         return this.view;
     },