Build a string with &to[]=
hi,
i have web app sends sms text messages. works fine, except want build series of mobile telephone numbers , pass these function.
click="senddata(smsenvir.text, '0861234567&to[]=0879876541')"
error "to" should followed ; delimiter.
i have solution working in livecycle, want flex/web version.
any ideas?
thanks,
niall
the ampersand html annotator used preceed special characters, i.e.:
< equals <
> equals >
your code means
&to equals nothing, because flex missing compulsory ';'.
to make long story short, use html character annotation:
click="senddata(smsenvir.text, '0861234567&to[]=0879876541')"
More discussions in Flex (Read Only)
adobe
Comments
Post a Comment