[flexcoders] Accessing Java Object property in DataGrid

2008-08-15 Thread Joshua Jackson
Dear all, I want to display a Java object property in DataGridColumn's dataField. How do I this in Flex? In my dataProvider I have an object namely called member. Now from the DataGridColumn's dataField, how do I display member.firstName? This is what I meant:

[flexcoders] Re: How does AIR apps connect to database?

2008-08-11 Thread Joshua Jackson
--- In flexcoders@yahoogroups.com, Douglas McCarroll [EMAIL PROTECTED] wrote: It sounds like you want to connect to a local DB. BlazeDS works fine to connect to a remote DB but for a local DB the standard approach is the use the SQLite DB that is built into the AIR runtime. Exactly. I want to

[flexcoders] How to pass value to ComboBox selectedItem?

2008-08-11 Thread Joshua Jackson
Dear all, I haven't succeed passing object value to ComboBox selectedItem, how do I do this in Flex? In HTML I pass a record id to the option value. Best regards, -- Setting a new landmark. Blog: http://joshuajava.wordpress.com/ Twitter: http://twitter.com/thejavafreak

[flexcoders] Re: How to pass value to ComboBox selectedItem?

2008-08-11 Thread Joshua Jackson
--- In flexcoders@yahoogroups.com, Laurent Cozic [EMAIL PROTECTED] wrote: You need to go through the dataProvider to change the value of the selected item. For example: comboBox.dataProvider.setItemAt(newItem, comboBox.selectedIndex); Thanks Laurent, it works now. Best regards,

[flexcoders] Upload file component

2008-08-11 Thread Joshua Jackson
Dear all, How do I upload file with Flex? Is there any file uploader component? I could not find any in the documentation, perhaps I have missed anything. Could anyone give me some hints? Best regards, -- Setting a new landmark. Blog: http://joshuajava.wordpress.com/ Twitter:

[flexcoders] Re: How does AIR apps connect to database?

2008-08-10 Thread Joshua Jackson
--- In flexcoders@yahoogroups.com, haykelbj [EMAIL PROTECTED] wrote: If you are using remoting with Flex you should still be able to use it with AIR. But you can not bundle a web servlet container with AIR apps. :( -- Setting a new landmark. Blog: http://joshuajava.wordpress.com/ Twitter:

[flexcoders] How does AIR apps connect to database?

2008-08-09 Thread Joshua Jackson
Dear all, I want know how does AIR apps can connect to database? With Flash flex apps, I connect to the database using BlazeDS. But how do I do this with AIR apps since I can not distribute the web container with AIR apps. Could anyone give me a hint on this? Best regards, -- Setting a new

[flexcoders] Paginate DataGrid

2008-08-08 Thread Joshua Jackson
Dear all, How do I paginate DataGrid? In the flex 3 reference it is written that DataGrid can be paginated, but it doesn't explain on how to do it? Could anyone give me a hint on this? Best regards -- Setting a new landmark. Blog: http://joshuajava.wordpress.com/ Twitter:

[flexcoders] Re: Paginate DataGrid

2008-08-08 Thread Joshua Jackson
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Joshua Jackson Sent: Friday, August 08, 2008 1:16 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Paginate DataGrid Dear all, How do I paginate DataGrid? In the flex 3 reference it is written that DataGrid

[flexcoders] Multiple select with mx:List

2008-08-04 Thread Joshua Jackson
Dear all, How do I do multiple selection with mx:List. Is there any parameter that I have to set? Because I can only select on item from mx:List. Could anyone give me a hint on this? Many thanks.

[flexcoders] How do I add selectedItems in the PopUp window?

2008-08-03 Thread Joshua Jackson
Dear all, In the parent window I have a List targetComponent and in the pop up window I also have a List component. The question is how do I add the selectedItems in the popup window to the listData of the targetComponent/parent window? Could anyone give me a hint on this? Many thanks --

Re: [flexcoders] Refreshing data in dataGrid

2008-07-31 Thread Joshua Jackson
Hi tom, thanks for the fast response. I'm using Java on the server side. I use spring hibernate for the backend On 7/31/08, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 30 Jul 2008, Joshua Jackson wrote: How do we do this with BlazeDS? I'm currently using BlazeDS. Is there any

[flexcoders] How do we implement pop-up input in Flex?

2008-07-31 Thread Joshua Jackson
Dear all, I want to have a popup input in my flex apps where the values in the popup window will be set to the parent window that calls this popup window. How do we set the variable chosen to the parent window in Flex? Could anyone give me a hint on these please. Many thanks -- Setting a new

Re: [flexcoders] Refreshing data in dataGrid

2008-07-30 Thread Joshua Jackson
On Wed, Jul 30, 2008 at 10:29 PM, Tom Chiverton [EMAIL PROTECTED] wrote: On Wednesday 30 Jul 2008, Joshua Jackson wrote: I've got a list of data displayed in a datagrid where the DataProvider is from Spring as the backend. Now everytime I add, update or delete data, it doesn't refresh

[flexcoders] Refreshing data in dataGrid

2008-07-29 Thread Joshua Jackson
Dear all, I've got a list of data displayed in a datagrid where the DataProvider is from Spring as the backend. Now everytime I add, update or delete data, it doesn't refresh the datagrid. How do I do this in Flex? I've tried doing - dataProvider.refresh(); -