Imants Horsts

Results 56 issues of Imants Horsts

Resulting in ![image](https://user-images.githubusercontent.com/1969119/156944612-6be6caf1-0ac2-43aa-bcb7-e9056f7f95f7.png) Flag icons are already supported in Fomantic UI, so I thought this would be good to have such formatter in atk out-of-the-box too.

enhancement :+1:

Should fix #1746 and fix #1744

Total support in Grid is currently quite basic, implementing ability to add up numeric values, define per-column strategies and format the footer. This PR offers many enhancements: ## Ability to...

enhancement :+1:
waiting for author

It only supports `values` property of model field, but don't support `enum` property. Workaround is to set values like this `$model_field->values = array_combine($values, $values);` instead of `$model_field->enum = $values;`

bug :beetle:
waiting for author

If we have `type=>json` field in model and for some strange reason add it as column in grid and enable filtering, then `Table\Column\FilterModel` throws error ``` Critical Error ErrorException: Undefined...

bug :beetle:

![image](https://user-images.githubusercontent.com/1969119/156822698-1d7bf20b-c18c-4d77-93a2-e321d8ec077e.png) We could nicely use header spot of selectable column to add checkbox (or dropdown) there to select / unselect all selectable checkboxes. I implemented something like that for very...

enhancement :+1:

Is there ability to select some of checkboxes on page load of $grid->addSelection() ? I couldn't find it. Would be very good to have and probably not that hard to...

enhancement :+1:

For ordinary string columns we have these conditions: ![image](https://user-images.githubusercontent.com/1969119/156668501-83c63c39-e714-4472-bcd7-e8060ec69a31.png) Would it be possible to also add "Is Not" there like we have for date field for example? I wanted to...

enhancement :+1:

If we want to add button column in CRUD which will simply navigate away to another page and pass rows ID, then it's not that trivial to do. Also need...

help wanted
first impression :nerd_face:
waiting for author

Current page URL: `/invoices/sale.php` ``` // button in page like this $b = new \atk4\ui\Button(['Export Invoice Lines', 'tiny right labeled basic black', 'icon'=>'download']); $cb = $b->add(new \atk4\ui\Callback()); $b->on('click', new \atk4\ui\jsExpression('document.location=[]',...

bug :beetle: