We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
multiple-input
['var' => 'col', 'label' => 'Sizes', 'type' => 'zaa-multiple-input', 'options' => [ [ 'type' => 'zaa-select', 'var' => 'image', 'label' => 'Image Selector', 'options' => [ ['value' => 1, 'label' => 'Image1.jpg'], ['value' => 2, 'label' => 'Image2.jpg'], ] ], [ 'type' => 'zaa-select', 'var' => 'size', 'label' => 'Image Size', 'options' => [ ['value' => 1, 'label' => 'Big'], ['value' => 2, 'label' => 'Small'], ] ], ]],
Expected Output:
print_r($this->getVarValue('col'); [ ['image' => 1, 'size' => 2], ['image' => 2, 'size' => 2], ]
If type is array, the output should look as followed:
[ ['image' => 1, 'size' => 2, 'checkboxes' => [1,3,4]], ['image' => 2, 'size' => 2, 'checkboxes' => [1,3,4]], ]
The text was updated successfully, but these errors were encountered:
Added new block type and updated docs; #1200
ebbc79a
Updated list styles so that buttons are only positioned top if list i…
c954bec
…tem has a border; #1200
Moved entry #1200 from changed to added
c0e8bca
TheMaaarc
No branches or pull requests
Expected Output:
If type is array, the output should look as followed:
The text was updated successfully, but these errors were encountered: