Imants Horsts
Imants Horsts
Resulting in  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.
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...
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;`
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...
 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...
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...
For ordinary string columns we have these conditions:  Would it be possible to also add "Is Not" there like we have for date field for example? I wanted to...
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...
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=[]',...