[flexcoders] Re: how to get data from DataGrid

2006-09-08 Thread keishichi2001
Thx Tracy. I've solved it using ArrayCollection. KC -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links * To visit your group on the web, go to:

[flexcoders] Re: [FileReference] change title on file chooser

2006-06-21 Thread keishichi2001
Any info? Thanks in advance K --- In flexcoders@yahoogroups.com, keishichi2001 [EMAIL PROTECTED] wrote: Following code will pop os-native file chooser up. FileReference.browse(); However, I couldn't find any property to change title on the file chooser. Any clue? K

[flexcoders] [FileReference] change title on file chooser

2006-06-20 Thread keishichi2001
Following code will pop os-native file chooser up. FileReference.browse(); However, I couldn't find any property to change title on the file chooser. Any clue? K Yahoo! Groups Sponsor ~-- Yahoo! Groups gets a make over. See the new email design.

[flexcoders] how to assign itemRenderer w/ActionScript

2006-06-19 Thread keishichi2001
I've trying following code to assign custom renderer into itemRenderer property on a TileList. You'll see commented part, which works well. However, I just want to try how i can do this by ActionScript. Following code reports no error, but each cell is empty(actually printed 'object Object').

[flexcoders] Strange behavior on mx:TextArea

2005-12-16 Thread keishichi2001
I think TextArea component is a very simple one. And I use this component any place in my application built with Flex 2. However in particular case, i got following error popup. TypeError: Error #1034: Type Coersion failed: cannot convert flash.events::[EMAIL PROTECTED] to

[flexcoders] Re: columnCount prop doesn't work in TileList(Flex2.0)

2005-12-15 Thread keishichi2001
- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of keishichi2001 Sent: Monday, December 12, 2005 6:02 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: columnCount prop doesn't work in TileList(Flex2.0) --- In flexcoders@yahoogroups.com, keishichi2001

[flexcoders] Re: columnCount prop doesn't work in TileList(Flex2.0)

2005-12-14 Thread keishichi2001
--- In flexcoders@yahoogroups.com, keishichi2001 [EMAIL PROTECTED] wrote: any info? In case if you guys are confused with my explanation, i would explain it more simply mx:TileList id=tl_month width=100% height=100% columnCount=7 ... /mx:TileList With above code, the TileList should have

[flexcoders] Re: Handling dataObject within a CellRenderer

2005-12-01 Thread keishichi2001
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of keishichi2001 Sent: Thursday, November 24, 2005 9:11 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Handling dataObject within a CellRenderer Do you mean it's a bug? Any workaround that i could take? -- Keishichi

[flexcoders] Re: listen a custom event from a dialog(Flex 2.0)

2005-12-01 Thread keishichi2001
any kind of suggestion would be highly appreciated -k --- In flexcoders@yahoogroups.com, keishichi2001 [EMAIL PROTECTED] wrote: My application has popup window which is triggered from the main application. var popup:Object = PopUpManager.popUpWindow(sWindow, this, modal

[flexcoders] Re: columnCount prop doesn't work in TileList(Flex2.0)

2005-12-01 Thread keishichi2001
any info? -k --- In flexcoders@yahoogroups.com, keishichi2001 [EMAIL PROTECTED] wrote: My application has a TileList as following. mx:TileList id=tl_month width=100% height=100% columnCount=7 borderStyle=none dataProvider={myService.getData.result} listItemRenderer=myCellRenderer

[flexcoders] listen a custom event from a dialog(Flex 2.0)

2005-11-30 Thread keishichi2001
My application has popup window which is triggered from the main application. var popup:Object = PopUpManager.popUpWindow(sWindow, this, modal); PopUpManager.centerPopUp(popup); Pop-uped dialog has a form and a submit button. When user fills and submit the form, data will be updated via my

[flexcoders] columnCount prop doesn't work in TileList(Flex2.0)

2005-11-29 Thread keishichi2001
My application has a TileList as following. mx:TileList id=tl_month width=100% height=100% columnCount=7 borderStyle=none dataProvider={myService.getData.result} listItemRenderer=myCellRenderer showEffect=Dissolve myCellRenders is a custom component based on Canvas, and it has no definition

[flexcoders] Handling dataObject within a CellRenderer

2005-11-24 Thread keishichi2001
Flex 2.0 A TileList definition has a CellRenderer with 'listItemRenderer'. This CellRenderer should be able to handle value of dataObject which is passed from the TileList. I think there are two cases to handle dataObject within CellRenderer. (i) Direct access to a property of dataObject.

[flexcoders] Re: iterate mx:Model data in CellRenderer

2005-11-21 Thread keishichi2001
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of keishichi2001 Sent: Thursday, November 17, 2005 11:06 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] iterate mx:Model data in CellRenderer i'm trying to display mx:Model data in CellRenderer(within TileList). The mx:Model has following

[flexcoders] iterate mx:Model data in CellRenderer

2005-11-18 Thread keishichi2001
i'm trying to display mx:Model data in CellRenderer(within TileList). The mx:Model has following format. mx:Model id=monthdata obj item date1/date day0/day daysch titleSales MTG/title titlePresentation/title /daysch /item item date2/date

[flexcoders] handling empty(null) in CellRenderer

2005-11-18 Thread keishichi2001
(flex2.0) When i pass empty XML element into CellRenderer, and handle it like followed, it shows as 'null' - String. (in the CellRenderer) ... mx:Link label={dataObject.day} / ... I want it to be shown real empty(which means, show nothing) if empty XML element given. Does anyone run into same

[flexcoders] Re: handling empty(null) in CellRenderer

2005-11-18 Thread keishichi2001
about something like: mx:Link label={dataObject.day==null?'':dataObject.day} / cheers -michael On 11/18/05, keishichi2001 [EMAIL PROTECTED] wrote: (flex2.0) When i pass empty XML element into CellRenderer, and handle it like followed, it shows as 'null' - String

[flexcoders] Re: How to give dynamic title to panel

2005-11-16 Thread keishichi2001
As Matt mentioned, Panel only has text prop, but htmlText. I assume creating custom component is reasonable way. Following is the code of customized Panel... ** not well-formed, plz modify styles more = ?xml version=1.0 encoding=utf-8? mx:VBox

[flexcoders] Re: another event, instead move?

2005-11-15 Thread keishichi2001
[mailto:[EMAIL PROTECTED] On Behalf Of keishichi2001 Sent: Monday, November 14, 2005 7:16 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: another event, instead move? Thanks Matt. I wrote following code. Is it what you wanted to say? Following code actually doesn't work

[flexcoders] Re: another event, instead move?

2005-11-14 Thread keishichi2001
the yFrom and yTo properties right then. Haven't tried this, but it's a thought... Good luck! Matt From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of keishichi2001 Sent: Thursday, November 10, 2005 1:05 AM

[flexcoders] Re: disable fwdMonth and prevMonth buttons in DateChooser

2005-11-14 Thread keishichi2001
control or side-by-side month displays. I haven't used it myself though... On 11/11/05, keishichi2001 [EMAIL PROTECTED] wrote: Thanks Manish, Yeah, personally i think people may want to switch ON/OFF these buttons. DateChooser is the one of powerful component, so we may use the component

[flexcoders] disable fwdMonth and prevMonth buttons in DateChooser

2005-11-11 Thread keishichi2001
Flex2.0 can i do this? with setting any props... I can't find suitable prop... Thanks, Keishichi Yahoo! Groups Sponsor ~-- Fair play? Video games influencing politics. Click and talk back!

[flexcoders] Re: disable fwdMonth and prevMonth buttons in DateChooser

2005-11-11 Thread keishichi2001
@yahoogroups.com, Manish Jethani [EMAIL PROTECTED] wrote: On 11/11/05, keishichi2001 [EMAIL PROTECTED] wrote: Flex2.0 can i do this? with setting any props... I can't find suitable prop... You can grab the internal forward button and set it to disabled

[flexcoders] another event, instead move?

2005-11-10 Thread keishichi2001
env : Flex1.5 + Cairngorm little bit difficult to explain my situation === i've trying to develop a catalog-viewer application with Flex. Multiple components i have... Main.mxml : this is the main application that user access. cat1.mxml : catalog application 1. cat2.mxml : catalog

[flexcoders] Re: set Effect at runtime

2005-10-28 Thread keishichi2001
Thanks for your comment, Gordon. I know I could just specify its id, if the mx:Image (whatever components) and function are all in one document(MXML file). My case is not the case, actually. Let me explain more, and any suggestion would be welcomed :) === My application is pretty much based

[flexcoders] Re: many ViewStack and images

2005-10-28 Thread keishichi2001
Thx Steven, Let me confirm... which did you recommend? 1. Don't utilize nested ViewStack, instead, take a Loader and change value of its source prop according to user request. 2. nested ViewStack is okay, then replace mx:Image with Loader control. should be #1 ? Best Regards, Keishichi ---

[flexcoders] Re: set Effect at runtime

2005-10-27 Thread keishichi2001
.selectedChi ld.setStyle(moveEffect, b); From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of keishichi2001 Sent: Wednesday, October 26, 2005 3:35 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] set Effect at runtime My Flex

[flexcoders] Re: set Effect at runtime

2005-10-27 Thread keishichi2001
Actually, 'viewstack2' has defined as following. mx:ViewStack id=viewstack2 width=100% height=100% selectedIndex={ModelLocator.currentPageNum - 1} mx:Canvas id=cv_1 width=100% height=100% mx:Image x=0 y=0 source=assets/img01.jpg moveEffect=b / /mx:Canvas mx:Canvas id=cv_2 width=100%

[flexcoders] many ViewStack and images

2005-10-27 Thread keishichi2001
[env]Flex1.5 w/JBoss on Windows My flex application is a web catalog. Imagine catalog site built on HTML(JSP). There should be bunch of image files on web server, and HTML or JSP request them according to user requests( ie:click a link ). I need to actualize it with Flex. Because the web catalog

[flexcoders] Re: set Effect at runtime

2005-10-27 Thread keishichi2001
. selectedChild.getChildAt(0).getStyle(fontSize); -- In flexcoders@yahoogroups.com, keishichi2001 [EMAIL PROTECTED] wrote: Actually, 'viewstack2' has defined as following. mx:ViewStack id=viewstack2 width=100% height=100% selectedIndex={ModelLocator.currentPageNum - 1} mx:Canvas id=cv_1 width=100

[flexcoders] Re: set Effect at runtime

2005-10-27 Thread keishichi2001
mx.core.Application.application.canvas1.viewstack1.panel1.viewstack2. selectedChild.getChildAt(0).getStyle(fontSize); -- In flexcoders@yahoogroups.com, keishichi2001 [EMAIL PROTECTED] wrote: Actually, 'viewstack2' has defined as following. mx:ViewStack id=viewstack2 width=100% height=100% selectedIndex

[flexcoders] set Effect at runtime

2005-10-26 Thread keishichi2001
My Flex application is based on Cairngorm 0.99. Main application includes several custom components and those have own ViewHelper to render themselves. Let's assume two of custom components, CompA and CompB. CompA has a mx:Image in it, and it has moveEffect setting. CompA also has definition of

[flexcoders] mouseDownOutside event isn't broadcast

2005-10-20 Thread keishichi2001
I put a customized component which extends mx:Panel on a mx:Canvas. Although this component is visible on the mx:Canvas, i'd like it to be hidden when user clicks 'outside of the component' - it's still on the mx:Canvas. I thought mouseDownOutside event of mx:Panel should be the event. However

[flexcoders] any recommendation for creating customized menu?

2005-10-12 Thread keishichi2001
mx:Menu, mx:MenuBar would be utilized to place some sort of 'menu'. However i think there are several issues that i can't utilize them. So i'm planning to create customized one. 1. both controls have performance issue - when i click those item, there is some delay. i want the customized one have