Ask a Question related to Macromedia Flex General Discussion, Design and Development.
-
AwesomeDigital2 #1
Application High Level Design
I am building a registration form in Flex that could have up to 120 fields for
the user to fill out depending upon what they select. They may not see some of
the items.
My thought is that I would have one registration class that has those 120
items as variables?
Then as each field gets updated, I would update that variable?
Or do I somehow bind each field to each corresponding item in the class so
that works automatically?
Then when the user clicks submit, I would validate the required fields, then I
would be posting all of the variables in that class to a hidden URL.
If anyone could suggestions or terms to research within the forums, or better
yet working examples of something that might be close to what I want to do, I
would appreciate it.
Thanks
Mathias
AwesomeDigital2 Guest
-
High-level question about ASP.NET web controls..
I'm a bit of a noob when it comes to web controls... What I want to do, is create web control that appears in the toolbox, that one could drag onto... -
Different User Context returned in high volume application
I have an asp.net application that uses windows integrated authentication to grant access to the site. When the default page loads, I grab the nt... -
Newby High Level Design/Architecture Question
Hi there, Firstly, sorry for the cross post. I didn't get a reply on the dotnet.framework.webservices group so I though this group may be able to... -
Application level variables
Christopher wrote: you need a permanent data store. usually available resources include text files, RDMS and code. global.asa is a good place... -
How to create top-level site/application
Hum...am I missing something here. Seems like when I create a new web application in visual studio .net, it will put it at... -
jinx82002 #2
Re: Application High Level Design
You could use an <mx:request> tag nested inside your HTTPService tag that has
bound vars to all fields, have the AS code decide which fields to show
depending on the user's interaction (add some sweet transitions to show new
fields too!) and then upon submit, validate and just send.
So the code might look something like
<mx:HTTPService id="myService" .......>
<mx:request>
<param1>{field1.text}</param1>
<param2>{field2.text}</param2>
</mx:request>
</mx:HTTPService>
General form goodness:
[url]http://www.adobe.com/devnet/flex/quickstart/validating_data/http://www.adobe.com[/url]
/devnet/flex/quickstart/validating_data/
jinx82002 Guest
-
AwesomeDigital2 #3
Re: Application High Level Design
Thanks Jinx!
I'll give that a try.
Mathias
AwesomeDigital2 Guest



Reply With Quote

