Flex :: Dynamic Flex Form Duplication

Feb 3, 2011

I'm designing a data entry app that allows multiple entries to its subject. For example, a person might have received education from multiple institutions. Each educational entry is a form and app user can click on a button to add another entry, which is a blank but identical form.I figure it involves states and custom form components but not sure how everything fits together.

View 1 Replies


Similar Posts:


Flex :: Read Dynamic Form Child Data In Flex?

Jul 20, 2010

I created a form dynamically by adding each component in action script,now i want to get back the text/data entered in to that each component dynamically?[code]...

View 2 Replies

Flex :: Layout - Horizontal MX Form Or Vertical Spark Form Flex?

Oct 5, 2011

I have noticed two differences between spark and mx forms which are causing me some problems. It seems by default the mx forms are arranged to the label is above the form input item. In Spark they are arranged next to each other. Also the label in spark forms are bold by default.For example MX code could be

<mx:Form width="100%">
<mx:FormItem indicatorGap="0">
<s:Label text="label1"/>

[code].....

View 1 Replies

ActionScript 3.0 :: Dynamic Duplication & Removal Of MCs

Sep 9, 2011

I have an MC of a sea texture which was created using clouds in Photoshop, and uses AS to fade in & out a child MC to look like waves moving back & forth. (The PS image fades to transparent where its close to each side to aid blending).

The user is able to pan the containing MC infinitely so I need some way of automatically overlapping a new instance when the pan gets close to the edges of the MC, but because its a large MC needs to also remove the MCs greater than distance x from the edges.

View 2 Replies

ActionScript 3.0 :: Dynamic MovieClip Duplication On Button Press

Sep 15, 2009

I am working on dynamic duplication of movieclip when the button is pressed one by one. In that movieclip there are two buttons ok and cancel.

Here is the piece of code:
var new_panel:please_wait = new please_wait;
click_btn.addEventListener(MouseEvent.MOUSE_DOWN, generate);
function generate(e:MouseEvent):void{
new_panel = new please_wait;
[Code] .....

if I create two movieclip, then how i remove a particular movieclip. I also attached the screen shot for reference..
Attachments: Screenshot.jpg (138.9 K)

View 4 Replies

Flex :: Get Array From Server To Form,as Form Items ?

Nov 28, 2009

am sending one user object from java to flex using remote object,now i want to get each item from that array to display in text boxes...how can i do this ?

userInfo=event.result as Array;
<mx:FormItem label="FirstName" fontWeight="bold" width="325" required="true">[code].....

View 1 Replies

Flex :: Soap - Possible To Create A Flex Contact Form That Submits Data To Salesforce.com As A New Lead?

Oct 7, 2011

has their own web-to-lead form that can be used to send leads from a website contact form. But I want to submit leads from a contact form inside a flex application. I can't see anything in the documentation, or on Google about this. Is it possible?

View 1 Replies

Flex :: Best Way To Validate A Complex Flex Form?

Dec 8, 2009

I have a Flex application that edits a moderately complex object, and I'd like to put some client-side validation in place on multiple parts of the editor.The editor is a set of nested objects:[code]The structure echoes the data model fairly closely, and the UI is what the project requires, so I'm not going to be too quick to restructure the classes there if I don't have to -- time is an issue too. What I want to do is have validators for each of the Component* instances that:[code]Show the validation tool tips and UI hints on the relevant UI element.Disable the SubmitButton when any part of the form is not valid(Optionally) provide enough information that I can display an error message in the form.

View 3 Replies

Flex :: Generate Dynamic Flex-ComboBoxes By Class-Properties

Jul 6, 2011

I have an Flex-Object with for example 3 properties.

myObj.prop1
myObj.prop2
myObj.prop3

I like to generate 3 Comboboxes to show the data.
No problem if I do it hardcoded in sourcecode.

But how can I find the prop1 to prop3 at runtime?

If next time I have 5 properties with different name it should generate 5 combos.

View 1 Replies

Flex :: Using The <s:Form/> Tag In 4.5?

Jul 13, 2011

I have a simple Form containing two input boxes. as shown in the code below :

<s:Form>
<s:FormItem width="242" label="Name:">
<s:TextInput x="1" y="0"/>
</s:FormItem>

[code]....

the problem is the input boxes are y distances apart and i want to bring them a little bit closer. if i had used the <s:VGroup/> or <s:HGroup/>, there is the gap property to close up the gap but that property is not in the Form tag.How can I close the gaps using the Form tag?

View 3 Replies

Flex :: Flex - Creating Dynamic Lineseries In Linechart?

Oct 11, 2011

This is my array collection

[Bindable]private var Projects:ArrayCollection = new ArrayCollection( [
{ Department: "Software", TotalProjects: 73,Completed:30,Inprogress:30,Approved:13},
{ Department: "XML",TotalProjects: 50,Completed:20,Inprogress:20,Approved:10},
{ Department: "Publishing",TotalProjects: 25,Completed:5,Inprogress:10,Approved:10},
{ Department: "Indesign", TotalProjects: 70,Completed:30,Inprogress:30,Approved:10},
{ Department: "Imaging", TotalProjects: 42,Completed:30,Inprogress:10,Approved:2}]);

[Code]...

how can i create mx:LineSeries dynamically depending upon array collection values. Now only 4 line series is there but some times i have to show more as per the array collection values change ex: if one more status HoldProject added to array collection?

View 1 Replies

Flex :: Dynamic Flex ToggleButton / Toggle Dynamically?

Nov 21, 2011

I have a four ToggleButton buttons that I want to behave as a group, so when one is clicked the others toggle off. I know you can do this with mx:ToggleButtonBar but I want to to use a spark skin-able component (ToggleButton). Is there a way to toggle a ToggleButton on and off programmatically or is there another way I can achieve my goal?

View 2 Replies

Flex :: Dynamic - Flex Repeater Horizontal Scrollbar?

Dec 7, 2011

In my application I'm using a canvas and repeater inside HBox it is Dynamic,..now I want to keep a horizontal scrollbar for the same, I may display more than 50 canvas addresses inside that Hbox and repeater.Here is my code:

<mx:HBox id="addrBox" x="42" y="161" width="1000%" styleName="ContextPanel" resizeEffect="resize" horizontalGap="5" height="0" paddingLeft="15">
<mx:Repeater id="rpt" maxWidth="1000" dataProvider="{ customerAddress }" >[code]....

Kindly give some idea for getting horizontal scroll bar for the Repeater.

View 2 Replies

Flex :: How To Create A Dynamic Flex Datagrid

Aug 31, 2009

I'm trying to create a dynamic datagrid in Flex. The data is coming back fine and I can add the column headings. I need to do it this way as the column names are dynamic and coming from a mysql database.he values from re.result.resultSet.results[j].notes into the data fields?

<mx:Script>
<![CDATA[
import mx.rpc.events.FaultEvent;

[code].....

View 2 Replies

Flex :: Add A Form With 2 Buttons Into A Box Dynamically?

Feb 4, 2010

Let's say I have this function

function Do(x:String){}

How can I make so that each time this function is called, it will add a form into a hbox, and that form will have 2 buttons yes and no and put x into the text of a label.When the user is going to click on Yes I need to trace(x) and remove the Form from the hbox

View 1 Replies

Flex :: Use Same MXML For An Add & Modify Form?

Feb 16, 2010

I have a form that is written in MXML that allows a user to create/add a User.I need to add a form that allows a user to modify SOME but NOT ALL of the fields for this user.The forms are so similar, I don't want to have to create two separate forms, one for Add and one for Modify.For example, in the Add form, the user specifies a user id. In the Modify form, the "user id" field is not editable.I'm wondering how I can initialize the MXML form (i.e. pass in a parameter?) so that it knows whether it is in the Add state or the Modif state.I know I can't do the following but this is what I would like to do (pseudocode):[code]

View 1 Replies

Flex :: Show MSN Status In App Form?

Mar 4, 2011

I have a flex business application and need to create some control that will show a small picture symbol of given user's MSN messenger status (online, away etc.)

Alternatively, how to insert an html page inside flex form?

There is a HTML code snippet on MSN site (supposed to be) doing exactly what I want, here it is:

[Code].....

Also I'll need to replace eb892994c712bb83 in this snippet with user's cid code.

View 2 Replies

Flex :: How To Remove Form,formitems

Apr 22, 2011

in my application im using a form...

<mx:Form x="10" y="22" id="f1" >
<mx:FormItem label="Location Code" id="labandtext">
<mx:TextInput id="locCodeTxt" editable="false"/>
</mx:FormItem>
</mx:Form>

for removing the form im using the following:

f1.removeAllChildren();

If i want to get the removedChildren (FormItems,TextInput)...how can i get back those childrens(FormItems,TextInput)...

View 3 Replies

Flex :: Component Isn't Visible On The Form

Aug 1, 2011

I made a very simple component to replace any component (e.g. a comboBox) on a form that is hidden if a user does not have access to change the value:

[Code].....

But regardless of whether or not objControl is visible, it doesn't get displayed.

View 1 Replies

Actionscript 3 :: Flex Several Httpservice On A Form?

Nov 2, 2011

I need to load a form where data load come from several mySQL table. how to load this request in the same php file or is the best way is to execute several http service to load data.

View 1 Replies

Actionscript 3 :: Fill Form Pdf With Flex?

Dec 19, 2011

I'd like to fill a pdf form with flex. Data are on my air application and I want to use those to fill a pdf file store on my computer.

View 2 Replies

.net :: Using Classes Obtained Form Web Services In Flex

Mar 30, 2010

from flex, when calling a .net web method that returns a custom class, I always recieve an ObjectProxy, even if I have the same class created on flex. How do I manage this ObjectProxy as the class I have?

View 1 Replies

Flex :: Embed App Into Mediawiki In The Form Of An Extension

Aug 7, 2010

I have a flex app, which I want to embed into a Mediawiki, preferably. in the form of an extension.

View 1 Replies

Flex :: Specify Action To Button To Submit A Form?

Oct 22, 2010

How to specify action to button to submit a form in adobe adobe flex?

View 1 Replies

Php :: Reading PDF Form Field Data From Flex 4?

Dec 20, 2010

I have managed to import and read a PDF using the CF Proxy for Actionscript: [URL]After all my trouble there, the precious form filed information that I was looking for was not there in the PDF info object. GRRRR. So I am back to looking for a way to do this with CFC's or CFM's or PHP.All I want is this:

Read the PDF from a Flex app.GET the form field information.WRITE a new PDF with the form field values.I have found so many close but no cigar options ... and I have tried so many that failed. There are so many free PDF this and that out there. But Adobe seems to reserve the real functionality for themselves. All the free options don't seem to have access to the form data?

View 1 Replies

Flex :: How To Change Default's Mx:Form Layout

Mar 15, 2011

I need an horizontal layout on my forms, they look like this:

[Code]...

I'm very confused about the new Flex 4 architecture...

View 1 Replies

Php :: Integration Between HTML Form To Flex Application

Mar 18, 2011

I have an integration problem between an HTML and a Flex application. I have a Flex application that exists on a domain, let's say [URL]. The application requires the user to login from a user, password input built in Flex - The user information is stored in a database that the Flex application query through php. Now I want to build an external login from a html form. This form is a part of a site on let's say the domain [URL]. I want to be able to fill in the user information on the 'otherdomain', send him/her to 'onedomain' with POST variables and make the Flex application use the credentials and login the user in the application.

How can I implement this in a secure way? I don't want to e.g. store the username and password plainly in flashvars. I can login the user before the Flex application. So it would be possible to e.g. login the user, get perhaps some token from the server that could be passed to the flex application, and then check that the token is right according to the server from a Flex call.

View 1 Replies

Flex :: Spark Form Not Showing Up In Flashbuilder 4

Jun 9, 2011

I am going through the flex in a week training and I'm trying to use the Spark form in Flashbuilder 4, but it does not appear in the components windows. When I drag a form from there it is an mx form control. The project is set to use the 4.5 sdk and I can even create the tag in the code view, but when I do that is doesn't show up in the designer... How can I get the spark form control to either show up in the designer when created in the code view, or get the control to show up in the components window so I can drag it in?

View 1 Replies

Flex Multi-page Form For Android?

Jul 12, 2011

I want to use a flex multi-page form on thew newly released Adobe AIR for android platform. I have a sequence of 30-40 screens on the form and the user can exit in between(storing the partial data entered). Is there a sample application for this, or can someone tell me the architecture to build such an application with lots of views? I want to store the data both on the device(sqlite) as well as a remote web server.

View 2 Replies

Flex :: Variables - Html Form Post To App

Aug 26, 2011

I've got a flex app that is basically completed it uses Zend AMF to connect/supply data.My app does have a login screen which seems to work fine. Now I'd like to add another login form on my site that would allows users to enter in username/password. When submitted form should pass the data to the flex app and bypass the application's login.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved