Select to view content in your preferred language

How change "Sign In" form in flex 3?

5230
21
Jump to solution
07-05-2012 09:53 PM
parvazparvaz
Occasional Contributor
Hi
I,m working on flex 3, I want to customize "Sign In" form, but I did not find any solution.
for example I want to change "Please sign in to access..." to "please enter your personal code..." or something else.

Best regards
A.ponker
Tags (2)
0 Kudos
21 Replies
DasaPaddock
Esri Regular Contributor
SignInWindow.mxml isn't actually a skin so it can't be set as a skinClass in CSS. By placing your version in your src folder at the same location as in the API, the Flex compiler will use it instead. (This is sometimes called "Monkey Patching".)

The other way to use a custom class it to set IdentityManager.signInWindowClass:
http://resources.arcgis.com/en/help/flex-api/apiref/com/esri/ags/components/IdentityManager.html#sig...
0 Kudos
MattiasEkström
Frequent Contributor
Thank you Robert and Dasa for making it clear for me. It works perfectly.
0 Kudos