Vinai Kopp

Results 313 comments of Vinai Kopp

Hey @rbouma, thanks for asking! Actually, after a long hiatus where I didn't need to create any backend forms, I now have a need again so I started working on...

Every essential part has been implemented. Currently a lot of manual testing is happening.

That would be super duper cool 😎

@Jacques03 I think you are confusing this module with the store front layered navigation.

Internally Hyva_Admin grids uses Magento's `SearchCriteria` for sorting, paging and filtering. As long as a filter value can be expressed with the SearchCriteria feature set it will work. * The...

Here is the list of supported conditions and. the SQL they would translate to: ``` $conditionKeyMap = [ 'eq' => "{{fieldName}} = ?", 'neq' => "{{fieldName}} != ?", 'like' =>...

Oh my gawd, this is amazing! I love it 💕 Never thought of that use case. Before merging a PR, I would like to discuss with @wigman about what that...

After mulling this over for a few days, my current thoughts are it would be easy to make the grid generation area independent, with basically the changes @rav-redchamps mentioned. Before...

@mrtuvn I agree the ui components hardcoding admin classes in base area files is awful. **sigh** We will not repeat that mistake (I'm sure we will make plenty of mistakes...

@rav-redchamps I've refactored out the [grid dir locator](https://github.com/hyva-themes/magento2-hyva-admin/blob/main/Model/Config/HyvaGridDirs.php) logic and removed the hardcoded `adminhtml` in there.