Vít Kutný
Vít Kutný
Fixes `Component with name 'content' does not exist.` when rendering detail form after submit. Its implemented similiar to `\Nette\Application\UI\Multiplier::createComponent`. Its simplified and will also work when container is accessed using...
After editing item there is only 1 row (the edited one) loaded. Summary is then computed from this row only. Can replicate on example grid https://ublaboo.org/datagrid/. 1. hit edit on...
After editing the row could not be in result when not ordered by ID w. If there are data in grid sorted by name and i change the name using...
fixes `Nette\Utils\Html::insert(): Argument #2 ($child) must be of type Nette\HtmlStringable|string, XY given`
Transform relative url to absolute from request. It`s needed when there are routes requiring other parts than path and query.
Fixed wrong ITF14/GTIN14 checksum calculation. Also throws InvalidCheckDigitException when wrong check digit is provided. Checksum calculation fixed according to https://www.gs1.org/services/how-calculate-check-digit-manually
Code: ```php namespace Test { #[\AllowDynamicProperties] final class DynamicTemplate { } $template = new DynamicTemplate(); echo $template->bar; # Undefined property: DynamicTemplate::$bar PHP0416 final class MagicTemplate { public function __get(string $name):...
``` public function actionDefault(): never # 'actionDefault': not all code paths return a value { $this->error(); } ``` Rule `not all code paths return a value` should not report functions...