Remove special HTML characters from labels or textfields in flex (mxml) -
i'm loading data rss feed flex application. of data has html special characters. can't read é,è,à,ç , other similar letters used in french example. gives strange code instead of letters accents.
now use reading html texts in flex, how can remove these special characters?
thanks!
guillaume
use "restrict" property of component takes specific type of string. mentioned below
mytextbox.restrict = "a-z a-z 0-9",
Comments
Post a Comment