Commit 7c7cacd 1 parent 0f48b1e commit 7c7cacd Copy full SHA for 7c7cacd
File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file
4
4
The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/ ) .
6
6
7
+ ## [ Unreleased]
8
+ ### Added
9
+ - Emitting Edit Grid event for row addition
10
+
7
11
## 3.1.3
8
12
### Fixed
9
13
- Problem with the PDFBuilder component where it would remove listeners for the drag-and-drop components.
Original file line number Diff line number Diff line change @@ -281,6 +281,11 @@ export default class EditGridComponent extends NestedComponent {
281
281
isOpen : true ,
282
282
data : { }
283
283
} ) ;
284
+ const rowInfo = {
285
+ component : this . component ,
286
+ row : this . editRows [ this . editRows . length - 1 ]
287
+ } ;
288
+ this . emit ( 'editGridAddRow' , rowInfo ) ;
284
289
this . buildTable ( ) ;
285
290
}
286
291
You can’t perform that action at this time.
0 commit comments