@@ -100,56 +100,56 @@ export default class Sample extends React.Component<any, any> {
100100 container . appendChild ( title ) ;
101101 }
102102
103- public webGridRowEditEnter ( sender : IgrGrid , args : IgrGridEditEventArgs ) : void {
103+ public webGridRowEditEnter ( args : IgrGridEditEventArgs ) : void {
104104 let container = document . getElementById ( "container" ) ;
105105 const message = document . createElement ( "p" ) ;
106106 message . textContent = `=> 'rowEditEnter' with 'RowID':` + args . detail . rowID ;
107107 container . appendChild ( message ) ;
108108 }
109109
110- public webGridRowEdit ( sender : IgrGrid , args : IgrGridEditEventArgs ) : void {
110+ public webGridRowEdit ( args : IgrGridEditEventArgs ) : void {
111111 let container = document . getElementById ( "container" ) ;
112112 const message = document . createElement ( "p" ) ;
113113 message . textContent = `=> 'rowEdit'` ;
114114 container . appendChild ( message ) ;
115115 }
116116
117- public webGridRowEditDone ( sender : IgrGrid , args : IgrGridEditDoneEventArgs ) : void {
117+ public webGridRowEditDone ( args : IgrGridEditDoneEventArgs ) : void {
118118 let container = document . getElementById ( "container" ) ;
119119 const message = document . createElement ( "p" ) ;
120120 message . textContent = `=> 'rowEditDone'` ;
121121 container . appendChild ( message ) ;
122122 }
123123
124- public webGridRowEditExit ( sender : IgrGrid , args : IgrGridEditDoneEventArgs ) : void {
124+ public webGridRowEditExit ( args : IgrGridEditDoneEventArgs ) : void {
125125 let container = document . getElementById ( "container" ) ;
126126 const message = document . createElement ( "p" ) ;
127127 message . textContent = `=> 'rowEditExit' << End of cycle >>` ;
128128 container . appendChild ( message ) ;
129129 }
130130
131- public webGridCellEditEnter ( sender : IgrGrid , args : IgrGridEditEventArgs ) : void {
131+ public webGridCellEditEnter ( args : IgrGridEditEventArgs ) : void {
132132 let container = document . getElementById ( "container" ) ;
133133 const message = document . createElement ( "p" ) ;
134134 message . textContent = `=> 'cellEditEnter' with 'value':` + args . detail . oldValue , args . detail . cancel ;
135135 container . appendChild ( message ) ;
136136 }
137137
138- public webGridCellEdit ( sender : IgrGrid , args : IgrGridEditEventArgs ) : void {
138+ public webGridCellEdit ( args : IgrGridEditEventArgs ) : void {
139139 let container = document . getElementById ( "container" ) ;
140140 const message = document . createElement ( "p" ) ;
141141 message . textContent = `=> 'cellEdit' with 'newValue':` + args . detail . newValue , args . detail . cancel ;
142142 container . appendChild ( message ) ;
143143 }
144144
145- public webGridCellEditDone ( sender : IgrGrid , args : IgrGridEditDoneEventArgs ) : void {
145+ public webGridCellEditDone ( args : IgrGridEditDoneEventArgs ) : void {
146146 let container = document . getElementById ( "container" ) ;
147147 const message = document . createElement ( "p" ) ;
148148 message . textContent = `=> 'cellEditDone'` ;
149149 container . appendChild ( message ) ;
150150 }
151151
152- public webGridCellEditExit ( sender : IgrGrid , args : IgrGridEditDoneEventArgs ) : void {
152+ public webGridCellEditExit ( args : IgrGridEditDoneEventArgs ) : void {
153153 let container = document . getElementById ( "container" ) ;
154154 const message = document . createElement ( "p" ) ;
155155 message . textContent = `=> 'cellEditExit'` ;
0 commit comments