开发者

Flex: How to send the names/labels of selected items from a list to a php file

开发者 https://www.devze.com 2022-12-10 09:38 出处:网络
I know i can access multiply selected options of a list by var selectedAlgos:Array = algosList.selectedItems;

I know i can access multiply selected options of a list by

var selectedAlgos:Array = algosList.selectedItems;

where algosList is the name of my List.

How to i send this array via HTTPService to a phpfile and how can i then access the elem开发者_运维技巧ents of this array from the php file?


Turn those items into a string using algosList.selectedItems.join(",");

0

精彩评论

暂无评论...
验证码 换一张
取 消