I have this custom made textinput file for my application.When I am
using my textinput feature in one of my components,there is this weird
problem.So i choose an item and go to edit mode.I don make changes and
go back to previous page and then i click view on the same item.The
password field on the form gets displayed.
there are my get and set methods on the text.I use a remote object to
get data into the form.
public function set text(value:String):void
{
TextInput(editableControl).text = value;
if (this._displayAsPassword !== true){
Label(nonEditableControl).text = value;
}else{
var tempStr:String="";
for (var i:Number=0; i< value.length; i++){
tempStr= tempStr + "*";
}
Label(nonEditableControl).text = tempStr;
}
}
[Bindable]
public function get text():String { return textInput.text }
any kind of light would be appreciated!
Thanks in advance
bavyaa
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en
-~----------~----~----~----~------~----~------~--~---