RE: [flexcoders] Validator error auto show without mouse over?

2008-08-01 Thread Alex Harui
Use thicker borders, or popup your own floaters. You're not really looking for tooltip/errortip behavior here. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of cox.blair Sent: Friday, August 01, 2008 5:18 AM To: flexcoders@yahoogroups.com

RE: [flexcoders] Validator._init method

2006-08-31 Thread Matt Chotin
This is Flex 1.5? Validators really arent meant to be created in ActionScript in Flex 1.5. Maybe you can define your component in MXML so that it can have the Validator tag? Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of bharg.flex

RE: [flexcoders] Validator Problems - Not clearing when disabled

2006-08-04 Thread Moishe Groger
Chad, Try setting the errorString property of the control with the red border to an empty string. Moishe Groger From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Chad SherwoodSent: Friday, August 04, 2006 1:30 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders]

RE: [flexcoders] Validator, Styles, ...

2005-10-05 Thread Matt Chotin
I dont think the thickness of the border is exposed right now for manipulation unfortunately. Same for having the error tip show up without the mouseover. These are good enhancement requests though, can you file them at http://www.macromedia.com/go/wish please? Matt From:

Re: [flexcoders] Validator Problem

2005-08-10 Thread Manish Jethani
On 8/10/05, dval823 [EMAIL PROTECTED] wrote: If no data is entered into the field, the validator does not trigger. If you enter data, and then delete the data, the validator is triggered. Or, if using the min and max example, if you enter data of the wrong length, the validator is

RE: [FlexCoders] Validator width actionscript and without model tag

2005-07-18 Thread Sauro, Nick
first off, ALL mxml classes are reallly Actionscript.The mxml serves as a shortcut for coding, in theoryyou can write an entire Flex app using nothing but AS. During compilation, all your mxmls are converted into AS.There's an option in flex-config to keep-generated-as files, so you can

RE: [FlexCoders] Validator width actionscript and without model tag

2005-07-18 Thread Eric Guesdon
Good evening, I do this code and i retreived true or false from validate method but i would like to retreive default validators behaviors (TextInput with red border and error tooltip attach to the error field) ?xml version=1.0? mx:Application

Re: [FlexCoders] Validator width actionscript and without model tag

2005-07-18 Thread Darron J. Schall
Eric Guesdon wrote: I do this code and i retreived true or false from validate method but i would like to retreive default validators behaviors (TextInput with red border and error tooltip attach to the error field) That's kind of funny - I actually just ran into this exact same thing today.

RE: [FlexCoders] Validator width actionscript and without model tag

2005-07-18 Thread Eric Guesdon
 : Re: [FlexCoders] Validator width actionscript and without model tag Eric Guesdon wrote: I do this code and i retreived true or false from validate method but i would like to retreive default validators behaviors (TextInput with red border and error tooltip attach to the error field) That's

Re: [flexcoders] Validator-requiredFieldError

2005-03-30 Thread Christoph Guse
Hi Matt, thanks for the information. Christoph Matt Chotin wrote: Flex 1.x doesnt allow databinding into validators. Its something we hope to address in the next version. Matt *From:* Christoph Guse

RE: [flexcoders] Validator-requiredFieldError

2005-03-29 Thread Matt Chotin
Flex 1.x doesnt allow databinding into validators.  Its something we hope to address in the next version. Matt From: Christoph Guse [mailto:[EMAIL PROTECTED] Sent: Tuesday, March 29, 2005 4:38 AM To: flexcoders@yahoogroups.com Subject: [flexcoders]

RE: [flexcoders] Validator

2005-03-20 Thread Mika Kiljunen
Validator has the property requiredFieldError which is the error message displayed when the field is empty but required. You can put your error messages there. Validators can be a bit problematic time to time, but once you get 'em working they are nice to have! -Mika -Original Message-

RE: [flexcoders] Validator + ValueObject

2005-01-29 Thread Allen Manning
ction addHandler( event ):Void { if (!Validator.isStructureValid(this, 'editedPayment')) return; } From: Matt Chotin [mailto:[EMAIL PROTECTED] Sent: 28 January 2005 23:58To: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Validator + ValueObject Its because youre probably not using binding to setup the rela

RE: [flexcoders] Validator + ValueObject

2005-01-28 Thread Matt Chotin
Its because youre probably not using binding to setup the relationship between the contactVO and the form fields. All you need to do is on your validators set the listener property to be the TextInput that is the source. Matt From: James Ward [mailto:[EMAIL PROTECTED] Sent: