[flexcoders] Re: Red error borders on form items before form is validated

2011-11-20 Thread Khanh
It's a focus border. Usually, it's blue. I'm not sure how it's red in your case! You can change the color following this example. Thanks to Peter Dehaan for his great tip. http://blog.flexexamples.com/2008/04/12/changing-the-focus-rectangle-color-on-a-textinput-control-in-flex/ OR you can hide thi

[flexcoders] Dúvidas com redirecionamento de telas

2011-11-20 Thread Rodrigo Kieling Sturm
Bom dia pessoal. Estou desenvolvendo um novo projeto em *Flex + JAVA + BlazeDS* e nesse projeto terei uma tela de login na página html inicial do domínio, porém a aplicação fica dentro de um contexto criado dentro deste mesmo domínio. Então o usuário deve realizar o login nesta página e caso a aut

[flexcoders] Custom GridItemRenderer RollOver Behavior

2011-11-20 Thread jbarts
Hi, I'm just now using my first spark datagrid after rolling my own solution in Flex 4. I've got a column of the grid using a custom item renderer which displays the status of a particular data item - valid or invalid - by showing an appropriate icon. Im doing this by manipulating the states

Re: [flexcoders] image is caching

2011-11-20 Thread Scott Fanetti
You should hash the images and use the hash as the name - that way image will not be cached if it changes. Or just change the name each time- append the date for instance. Sent from my iPhone On Nov 18, 2011, at 9:03 AM, Michael Sumner wrote: > Working on a home owners association site. I

Re: [flexcoders] Re: Pb with List

2011-11-20 Thread claudiu ursica
Image extends SWFLoader which means it dispatches a complete event, When the complete event is dispatched your image finished loading.  you can use some sort of preloader/animation to make things look better. Or you can queue the images lading and only display them after all of them are loaded.

[flexcoders] Re: Pb with List

2011-11-20 Thread cjacquel73
I use an ItemRenderer with Thx, CJ --- In flexcoders@yahoogroups.com, claudiu ursica wrote: > > Images load asynchronously, so it obviously take time and don't load all at > once. What class are you using to display the images? > > C >

Re: [flexcoders] Pb with List

2011-11-20 Thread claudiu ursica
Images load asynchronously, so it obviously take time and don't load all at once. What class are you using to display the images? C From: cjacquel73 To: flexcoders@yahoogroups.com Sent: Sunday, November 20, 2011 3:44 PM Subject: [flexcoders] Pb with List  

Re: [flexcoders] Pb with List

2011-11-20 Thread Srinivas Sandur Madhu Murthy
Christophe, Until unless you post some code, nobody would help you. Post sample or extracted code which you think is not working, so that people can go through and help you Regards Srinivas On Nov 20, 2011, at 6:44 AM, cjacquel73 wrote: > Hello, > > I have a with images inside. There is a

[flexcoders] Pb with List

2011-11-20 Thread cjacquel73
Hello, I have a with images inside. There is a combo to change the images in the List. The images are on the server (not embedded). But I have problems when I change the images'List with the combo. They are not immediately uploaded and the rest of the application in not working correctly.