I have Text input box for the user to enter the heading for a new record in NewRecord form.
Like:
<mx:TextInput text="Enter Subject Here"/>
and then it is saved in the Database...
I have another form called ChangeRecord so that the user can change the heading or Subject..
How do i populate the name already in DB in the TextInput Box above... There is no dataProvider pram in TextInput...
I have the following:
Any help is appreciated.
Like:
<mx:TextInput text="Enter Subject Here"/>
and then it is saved in the Database...
I have another form called ChangeRecord so that the user can change the heading or Subject..
How do i populate the name already in DB in the TextInput Box above... There is no dataProvider pram in TextInput...
I have the following:
Code:
[Bindable] public var NR:ArrayCollection;
private function resultNR(event:ResultEvent):void{
NR:ArrayCollection(event.result);
}
<mx:TextInput text="Enter Subject Here"/>
Any help is appreciated.