Ciki

Results 27 issues of Ciki

handle only own history stack & make history api actually work

CLIENT-SIDE

Currently there is no way (I suppose) to disable translator on given replacement values, see https://github.com/o5/grido/blob/master/src/Components/Columns/Column.php#L341-L343 Option to toggle the translator would be useful

I render 2 grids on the same page (or on different page but without refreshing page, using ajax) and if the first one has editable columns then also the second...

Hi @dg, [this hotfix](https://github.com/nette/utils/issues/103#issuecomment-198329790) breaks iteration over ArrayHash with reference, which is quite unpredictable until one looks into the code.. ```php $hash = \Nette\Utils\ArrayHash::from([1]); foreach($hash as $k => & $v)...

Hi, is trimming leading zeros from numeric string a feature or a bug? ``` - 0907123456 ``` valid mobile number gets parsed as `907123456` integer. I know I can use...

I think [validateMaxPostSize](https://github.com/nette/forms/blob/master/src/Forms/Form.php#L473) method is actually never called in case POST data exceeds `$_SERVER['CONTENT_LENGTH']`. It is meant to be called from [validate()](https://github.com/nette/forms/blob/master/src/Forms/Form.php#L467) which is called from [fireEvents](https://github.com/nette/forms/blob/master/src/Forms/Form.php#L401) but it can...