Rudie Dirkx

Results 34 issues of Rudie Dirkx

I have no idea how to do this, but would it be possible to auto-run a warrior when its Player.js (or other files?) change? Something like warriorjs --directory warriorjs/antalia-baby-steps/ --watch...

What version? How to make a radios field? Bootstrap isn't exactly unambiguous.

v2

Instead of `ChoiceType`.

v2

This is probably too invasive, and maybe still broken, but it's a way to always get an empty model, even if you don't set `empty_model`. Because currently the parent's model...

`empty_model` only works for Eloquent models, but it's also useful for an array of data. In GET that's used for the `prototype` and `empty_row` children. In POST it's used as...

Don't use `name` for value finding. No `ParentType`.

v2

Instead of `CollectionType` doing 2 things.

v2

My form simplified: ```` // Prepare subform $taco_test = $this->formBuilder->plain(); $taco_test->add('professions', 'choice', [ 'label' => trans('report.taco_test.professions'), 'choices' => $favorites_options, 'multiple' => TRUE, 'expanded' => TRUE, ]); // Add subform to...

bug

1. A collection of 3 models 2. A form with a 'collection' type, where 'data' is the collection of models 3. A plain form in that collection type, with 2...

bug

``` class Form public function rebuildForm() { // If form is plain, ..... if (get_class($this) === 'Kris\LaravelFormBuilder\Form') { ``` That's not right. The plain form class is configurable, kinda: ```...

enhancement