@@ -1262,8 +1262,6 @@ public function filterSucceeded(NetteForm $form): void
1262
1262
return ;
1263
1263
}
1264
1264
1265
- $ values = (array ) $ form ->getUntrustedValues (null );
1266
-
1267
1265
if ($ this ->getPresenterInstance ()->isAjax ()) {
1268
1266
if (isset ($ form ['group_action ' ]['submit ' ]) && $ form ['group_action ' ]['submit ' ]->isSubmittedBy ()) {
1269
1267
return ;
@@ -1273,9 +1271,11 @@ public function filterSucceeded(NetteForm $form): void
1273
1271
/**
1274
1272
* Per page
1275
1273
*/
1276
- if (isset ($ values ['perPage ' ])) {
1277
- $ this ->saveSessionData ('_grid_perPage ' , $ values ['perPage ' ]);
1278
- $ this ->perPage = $ values ['perPage ' ];
1274
+ $ perPage = $ form ['perPage ' ]->getValue ();
1275
+
1276
+ if (isset ($ perPage )) {
1277
+ $ this ->saveSessionData ('_grid_perPage ' , $ perPage );
1278
+ $ this ->perPage = $ perPage ;
1279
1279
}
1280
1280
1281
1281
/**
@@ -1303,7 +1303,7 @@ public function filterSucceeded(NetteForm $form): void
1303
1303
$ primaryWhereColumn = $ form ->getHttpData (Form::DataLine, 'inline_edit[_primary_where_column] ' );
1304
1304
1305
1305
if ($ edit ['submit ' ]->isSubmittedBy () && $ edit ->getErrors () === []) {
1306
- $ this ->inlineEdit ->onSubmit ($ id , $ values ['inline_edit ' ]);
1306
+ $ this ->inlineEdit ->onSubmit ($ id , $ form ['inline_edit ' ]-> getValues () );
1307
1307
$ this ->getPresenterInstance ()->payload ->_datagrid_inline_edited = $ id ;
1308
1308
$ this ->getPresenterInstance ()->payload ->_datagrid_name = $ this ->getFullName ();
1309
1309
} else {
@@ -1345,7 +1345,7 @@ public function filterSucceeded(NetteForm $form): void
1345
1345
1346
1346
if ($ add ['submit ' ]->isSubmittedBy () || $ add ['cancel ' ]->isSubmittedBy ()) {
1347
1347
if ($ add ['submit ' ]->isSubmittedBy () && $ add ->getErrors () === []) {
1348
- $ this ->inlineAdd ->onSubmit ($ values ['inline_add ' ]);
1348
+ $ this ->inlineAdd ->onSubmit ($ form ['inline_add ' ]-> getValues () );
1349
1349
}
1350
1350
1351
1351
$ this ->redrawControl ('tbody ' );
@@ -1359,7 +1359,7 @@ public function filterSucceeded(NetteForm $form): void
1359
1359
/**
1360
1360
* Filter itself
1361
1361
*/
1362
- $ values = $ values ['filter ' ];
1362
+ $ values = $ form ['filter ' ]-> getValues () ;
1363
1363
1364
1364
if (!$ values instanceof ArrayHash) {
1365
1365
throw new UnexpectedValueException ();
0 commit comments