bootstrap-duallistbox icon indicating copy to clipboard operation
bootstrap-duallistbox copied to clipboard

helper's issue

Open TaiGel opened this issue 8 years ago • 1 comments

When i try use select like array <select multiple="multiple" name="demo[]"> On submit, helpers values going into $_POST['demo'] too. In browser looks like this:

demo[]_helper1:9 //try to remove from array
demo[]:8
demo[]:5
demo[]:13

But $_POST['demo'] look like this:

array (
  0 => '9',
  1 => '8',
  2 => '5',
  3 => '13',
)

There is any option for disable helpers name?

TaiGel avatar Sep 15 '16 10:09 TaiGel

set helperSelectNamePostfix: false

jujoflores avatar Sep 15 '16 23:09 jujoflores