[flexcoders] Using a Text Field vs a Date Field

2005-07-25 Thread javawebgrrl
Hi All, I have a situation where I want a user to be able to enter a date into a Text Field. (as opposed to a dateField) (Can explain why if you want, but will leave this alone for now!) My problem is what to do if the user enters something like abc. I am wondering if I could use the

[flexcoders] How do I show time zone with DateFormatter

2005-06-13 Thread javawebgrrl
I have used the DateFormatter, but unfortunately cannot seem to get it to work as I like. I have declared it in my action script as follows: dateTimeFormatter = new DateFormatter(DD MMM @ LL:NN ); My problem is, I would also like to show the time zone, for example, GMT or PST. I cannot

[flexcoders] Re: Can you Use a Repeater without a dataprovider?

2005-04-04 Thread javawebgrrl
dataProvider={[0,0,0,0]} ... / Matt _ From: javawebgrrl [mailto:[EMAIL PROTECTED] Sent: Monday, April 04, 2005 2:48 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Can you Use a Repeater without a dataprovider? Hi, Can you use a repeater

[flexcoders] Re: Can you Use a Repeater without a dataprovider?

2005-04-04 Thread javawebgrrl
Tracy -Original Message- From: javawebgrrl [mailto:[EMAIL PROTECTED] Sent: Monday, April 04, 2005 5:48 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Can you Use a Repeater without a dataprovider? Hi, Can you use a repeater without a dataprovider, for example

Setting colunm width in a DataGrid column

2005-03-16 Thread javawebgrrl
Hi All, I have a datagrid with 3 columns. I want to display the columns with the exact width that I have set, but what seems to be happening is that the third column grows to fit its text. Is there a way to truncate the text that goes into the column to just display the part that will fit

Multidimensional Array in Actionscript

2005-03-06 Thread javawebgrrl
Hi, Is there an object in ActionScript which will behave something like a java.util.HashMap ? I am trying to store some data into an array using var myArray:Array=new Array(); myArray.push(strKey,Object); I am storing multiple keys object pairs this way, but now I am wondering how to get

Re: Multidimensional Array in Actionscript

2005-03-06 Thread javawebgrrl
--- In flexcoders@yahoogroups.com, Darron J. Schall [EMAIL PROTECTED] wrote: javawebgrrl wrote: Hi, Is there an object in ActionScript which will behave something like a java.util.HashMap ? The generic Object in Flash acts just like a map. var map:Object = new Object(); map[strKey