[flexcoders] Re: ComboBox Problems

2008-07-08 Thread hardaur55
tedIndex on "show" or some other event. > > > > Tracy > > > > ____ > > From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On > Behalf Of hardaur55 > Sent: Monday, July 07, 2008 9:47 AM > To: flexcoders@yahoogroups.com > Subject

[flexcoders] Re: ComboBox Problems

2008-07-08 Thread hardaur55
n that the comboboxes are showing are incorrect. G --- In flexcoders@yahoogroups.com, "Alex Harui" <[EMAIL PROTECTED]> wrote: > > How are you verifying that selectedIndex is correct? I assume the > dropdowns still contain the correct arrays? > > > > _

[flexcoders] ComboBox Problems

2008-07-07 Thread hardaur55
Hey all. Having a silly problem with 3 comboboxes and can't seem to find anything very helpful via google. I'm creating a user registration wizard with multiple pages that contains a custom component. The custom component is a date selection component consisting of 3 combo boxes (month, day, yea

[flexcoders] Re: Weird Validate & Binding problem

2008-06-26 Thread hardaur55
oders@yahoogroups.com, "valdhor" <[EMAIL PROTECTED]> wrote: > > I may be wrong but I didn't think you could use a binding with a > function. Try removing the Date.parse function from your binding tag... > > destination="tideContext.user.birthday"/> > &

[flexcoders] Weird Validate & Binding problem

2008-06-26 Thread hardaur55
Hello all! I have a TextInput field that is to accept a date. There is a date validator attached to the field and the text property of the date field is bound to a property in another field. Here's the code: mxml: Actionscript: formIsValid = formIsValid && validate(validateBirthday

[flexcoders] Re: Programatically deselecting tree branch objects

2007-09-09 Thread hardaur55
for posterity, I finally came up with a decent solution. To programatically deselect an item from a Tree: treeObjectName.selectedItem = null; Hope that helps somebody at some point. H --- In flexcoders@yahoogroups.com, "hardaur55" <[EMAIL PROTECTED]> wrote: > > Good

[flexcoders] Re: How to expand TREE Node children by clicking folder icon instead of triangle

2007-09-09 Thread hardaur55
Mubasher, Hi, I'm doing the same thing you are. You can see some code that makes it happen at http://tech.groups.yahoo.com/group/flexcoders/message/86441 However, you'll run into the same problem I am : ( H --- In flexcoders@yahoogroups.com, "mubasherhaneef" <[EMAIL PROTECTED]> wrote: > > I

[flexcoders] Programatically deselecting tree branch objects

2007-09-09 Thread hardaur55
Good morning all, I'm trying to set up a tree control so that branch items open and close on select just as if somebody had clicked the twirly. I've got everything taken care of but I need to find a way to programatically deselect the branch item. Here's the code problem: In my Tree change even