Eweso

Results 9 comments of Eweso

Still no feedback? At the moment I do not have time to find the origin of the bug and provide a patch. But it is actually a critical bug and...

I see. Thank you for your response! I will provide the relevant code within the next two weeks. I am a little busy right now.

``` $form = new \Zend\Form\Form; $form->add([ 'name' => 'multiselect', 'type' => 'select', 'options' => [ 'value_options' => ['A', 'B', 'C'] ], 'attributes' => [ 'multiple' => true ] ]); $multiSelectInput...

If you do not add a filter or validator, you don't need an ArrayInput, this is true. But if you create a dynamic multi-select and you want to validate and...

@froschdesign > If you set the the value_options before you validate your form, then everything works. No extra filters or validators needed. This is not what I was talking about....

@froschdesign But why don't you use just the ArrayInput on multi select? I mean, what is the usecase for the ArrayInput, if we do not use it on array values?...

@froschdesign I don't think, that the behaviour will change. Therefore I will create a patch and pull request. But don't expect it in July. Beginning of August sounds realistic.

Update: I will start in September at the earliest. At the moment I have to much to do at work. I am sorry for that!

@Erikvv I already pulled a bugfix for the required problem on ArrayInput: https://github.com/zendframework/zend-inputfilter/pull/167 There is no BC break on that.