Questions tagged [resultevent]

5 questions
1
vote
2 answers

Call Java functions in Flex

Right now I'm trying to understand how Flex works with Java (Flex -> BlazeDS -> Java). I tried to follow THIS tutorial and everything works fine, I just don't understand why do we need to call java function this way:
Maksim
  • 16,635
  • 27
  • 94
  • 135
1
vote
4 answers

flex editing ResultEvent result

i have a textinput field which has autoComplete, i populate its dataprovider from a webservice. I assign the dataprovider with the result of a webservice call ac.dataProvider = e.result; however i now want to edit each field returned from the…
cdugga
  • 3,849
  • 17
  • 81
  • 127
0
votes
1 answer

Casting result.event into an ArrayCollection of Person (Class) in Flex

Im kinda new to the Flex environment and I was wondering how to do this scenario: My initial code goes like this: public function displayAllNames(event:ResultEvent):void { var result:ArrayCollection = new ArrayCollection(); result =…
Israel Sato
  • 199
  • 1
  • 2
  • 12
0
votes
1 answer

Flash Builder: Get the result of HTTPService request with AS3 in Flex Mobile App

really drives me insane to get the results of a HTTPService object. When the call to the server is completed, a result event will be triggered. That all is working OK and the server can serve XML data or JSON data without errors. But what to do with…
Codebeat
  • 6,501
  • 6
  • 57
  • 99
0
votes
1 answer

Web Service returning same values FLEX 4.6

Hi i trying to fill a datagrid with values i previously inserted in flex app, but i geting the same value as the first insert and the second, third, fourth inserts are happening, but flex is bringing the same value. Any idea about? Code…