views:

146

answers:

1

I have tried several different ways, but it seems that it never sends the empty array value to the server

      _vars["myObject[array_list][]"] = null;
      _vars["myObject[array_list][]"] = [];

It only seems to work if I provide a value (which I am trying to avoid). What I would like for it to do is send the url param: myObject[array_list][]=& (i.e. an empty value)

Any ideas?

+1  A: 

Try _vars["myObject[array_list][]"] = "";

Hrundik
thanks...that seemed to work.
gmoniey