[flexcoders] Re: Issue with Sorting DataGrid with itemRenderer

2006-05-29 Thread Nikmd23
That did the trick! Thanks Joan! -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com SPONSORED LINKS

[flexcoders] Issue with Sorting DataGrid with itemRenderer

2006-05-26 Thread Nikmd23
I'm having an issue when I sort a DataGrid which has a column that is a custom itemRenderer. My renderer colors the text it outputs as red if a certain value is passed in. That works great, however, when I sort the datagrid, the red element changes it's position, and leaves the red color

[flexcoders] Developers Derby - Question for Adobe

2006-05-12 Thread Nikmd23
Hey Adobe people, I submitted an application into the Derby a week ago. I still have not received the confirmation Email or any feedback. I was wondering if this was because you guys are so busy this week (Beta 3 Spry), or perhaps something went wrong when I filled out the form. I couldn't

[flexcoders] Re: FDS Beta 3 with ColdFusion Issues

2006-05-12 Thread Nikmd23
I dug a little deeper into this issue, and this is what I've found: My destination works, I named it testDest and now I can connect to it fine. I changed it's name to otherTest, restarted Flex Server, changed my MXML to point to it, and when I ran it, it said that otherTest was not found.

[flexcoders] Re: FDS Beta 3 with ColdFusion Issues

2006-05-12 Thread Nikmd23
Thanks Bill. That helped me to learn a lot, unfortunately, I am still having my problem. I guess the best way I can boil it down is like this: main.mxml: …public var ds:DataService = new DataService(`nameA'); … flex-data-service.xml:destination id="nameA"…/ destination a simple change to

[flexcoders] FDS Beta 3 with ColdFusion Issues

2006-05-11 Thread Nikmd23
Hey Gang, A little help, if possible? I just updated to Beta 3. I was excited to upgrade to Beta 3 because last week I finally figured out (or thought I figured out) how DFS stuff works. I even made 2 or 3 simple FDS Beta 2 apps, and was showing off to all my friends. (Or just Randy, he's

[flexcoders] Re: FDS Beta 3 with ColdFusion Issues

2006-05-11 Thread Nikmd23
Whoa - I just reopened FB, and tried to debug this problem more. I hit Run - and the darn thing worked. I didn't change anything. I had previously restarted Data Services many times. Do you have to restart FB too after defining a destination? -- Flexcoders Mailing List FAQ:

[flexcoders] DataService.fill params

2006-05-03 Thread Nikmd23
Hey guys, I was wondering if anyone had any information on the second argument of the DataService.fill method? (Specifically for CF) I think it's meant to be the params to CF to filter your query. While playing around with it, I noticed that in the flex-data- service.xml file's

[flexcoders] Re: DataService.fill params

2006-05-03 Thread Nikmd23
Thanks Bill, that does help some, I do see in the DAO where I am supposed to change the code. However, I'm still confused as to how to pass the params out of flex. The DataService.fill method takes a ListCollectionView, followed by an array. FB2 won't let me write ds.fill(myCollection, arg1,

[flexcoders] Re: DataService.fill params

2006-05-03 Thread Nikmd23
João, Bill, thanks for your help! I didn't realize you could change the Assemeblers signature - I thought Flex would need it the way it came. I get it now and my example is working - so thank you very much! -- Flexcoders Mailing List FAQ:

[flexcoders] ButtonBar in Beta

2006-03-06 Thread Nikmd23
I have this code: mx:ButtonBar mx:dataProvider mx:Button label=Up icon=@Embed('images/arrow_up.png')/ mx:Button label=Down icon=@Embed('images/arrow_down.png')/ mx:Button label=Cancel icon=@Embed('images/cancel.png')/ /mx:dataProvider /mx:ButtonBar It worked in the Flex 2 Alpha,

[flexcoders] Re: ioError # 2038 - Any help?

2005-11-17 Thread Nikmd23
Thanks Matt, Hey I also have another wierd bug - I just dont have another machine to duplicate it on, so perhaps you can check on yours for me. In FlexBuilder 2, on the first line of an MXML file: ?xml version=1.0 encoding=utf-8? If you place your cursor right after the second question mark,

[flexcoders] Re: ioError # 2038 - Any help?

2005-11-16 Thread Nikmd23
Hummm, perhaps someone else can run my code and tell me if they get the same problem. (Or identify an issue with my code.) DOWN.MXML ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.macromedia.com/2005/mxml; xmlns=* creationComplete=init(); mx:Script source=down.as/

[flexcoders] Re: ioError # 2038 - Any help?

2005-11-16 Thread Nikmd23
After even more research - I'm pretty much convinced that Flash 8.5 is presenting the problem. I say that because the sample app located at http://labs.oinam.com/flash8/fileuploaddownload/ workes fine for me in IE and FireFox when I have Flash 8.0 installed - when I update to 8.5 I get the

[flexcoders] ioError # 2038 - Any help?

2005-11-15 Thread Nikmd23
I'm hoping someone might have some insight here. I'm using the FileReference class to download an image from the server to the client. It works great, as long as the image I'm downloading it small. (The largest one I've been able to download so far is 4.0K) I haved caught the error and

[flexcoders] HUGE Date gotchya

2005-07-16 Thread Nikmd23
Just wanted to let everyone know this real quick, because it took me forever and an accident to figgure it out. The mask (aka format) you use on DateFormatter's have to be UPPER case. (MM/DD/YY) However the date mask on a DateValidator MUST be lower case (mm/dd/yy) or the date will noe

[flexcoders] Re: Validating Arguments

2005-07-15 Thread Nikmd23
Ohhh, ok. Well that makes sense then. I was hoping I was doing something wrong, but if not I'll just post that bug and hope that Flex 2.0 has it (A) fixed and (B) that it is here soon! Thanks Matt! Nik -- Flexcoders Mailing List FAQ:

[flexcoders] Validating Arguments

2005-07-14 Thread Nikmd23
Hey, was wondering if anyone else was having this issue: The documentation for flex says When you use argument binding, you provide request arguments in child tags of an mx:RemoteObject, mx:WebService, or mx:HTTPService tag. Argument binding lets you copy data from user interface controls or