[flexcoders] Datagrid question

2009-04-20 Thread elevight
Imagine a mx:DataGrid with 3 columns. The first and second columns are people's first and last names, respectively. The third column is a custom MXML component that displays a button with its 'label' property set to a random number generated within the component; this number is generated during

RE: [flexcoders] Datagrid question

2009-04-20 Thread Tracy Spratt
[mailto:flexcod...@yahoogroups.com] On Behalf Of elevight Sent: Monday, April 20, 2009 2:15 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Datagrid question Imagine a mx:DataGrid with 3 columns. The first and second columns are people's first and last names, respectively. The third column

[flexcoders] datagrid question

2008-08-05 Thread Chad Gray
I have a datagrid that I populate with some data. ProductID, Name, Description I would like it so when a user clicks on one of the datagrid rows it fires a RemoteObject that queries a CFC with the ProductID. Then take the RemoteObjects results and display the data returned. How do I get the

RE: [flexcoders] datagrid question

2008-08-05 Thread Tracy Spratt
] On Behalf Of Chad Gray Sent: Tuesday, August 05, 2008 5:07 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] datagrid question I have a datagrid that I populate with some data. ProductID, Name, Description I would like it so when a user clicks on one of the datagrid rows it fires

[flexcoders] DataGrid question

2007-12-21 Thread djhatrick
I asked a while back and didn't see an example of how to override the method that selects an item in a datagrid, or for mouseovers for that reason. I am using a datagrid in an application, and it's a dummy datagrid just shows data - I don't want to select anything or highlight anything. Any

Re: [flexcoders] DataGrid question

2007-12-21 Thread Joe
Would defining a new methiod, then calling super.dataGrid() work? Im starting to get into the Flex side of AS3, right now all I have is the OOP side of flash. So I don't know the method calls yet. :P -Joe On Dec 21, 2007 10:42 AM, djhatrick [EMAIL PROTECTED] wrote: I asked a while back and

[flexcoders] Datagrid Question: Displaying the first selectedItem after page loads

2007-12-07 Thread its_llpj
Hello, Is there a way to have your datagrid automatically display the first record after the page loads? I would like to somehow set the selectedItem to 1. Thanks!

[flexcoders] Datagrid question

2007-02-19 Thread VVV
Is it possible to suppress some of the data in certain rows in a datagrid. For Example: In a datagrid with 5 columns and 3 rows If Row1 has data, A, B, C, D, E Row2 has data, A, B, C, F, G Row3 has data X, y, Z, F, K Is it possible to suppress A,B,C from row 2 since, the data is the

Re: [flexcoders] Datagrid question

2007-02-19 Thread xmrcivicboix
From the looks of it. Row1 and Row2 are entirely different rows with different data because of your 4th and 5th column. They have the same data but it doesn't mean the same. It's like saying Row1 is an Apple and Row2 is an Orange. Even though they're both sweet, we simply cannot suppress them to

RE: [flexcoders] Datagrid question

2007-02-19 Thread Dimitrios Gianninas
Of VVV Sent: Monday, February 19, 2007 10:58 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Datagrid question Is it possible to suppress some of the data in certain rows in a datagrid. For Example: In a datagrid with 5 columns and 3 rows If Row1 has data, A, B, C, D, E Row2 has data, A, B

[flexcoders] datagrid question

2006-07-31 Thread Impudent1
If I have a datagrid pulling in column information. Is there a simple way to have the column width autoscale to fit? The only way I can see is to loop thru the returned array to find the longest entry, then bind the width to the entry.length Impudent1 LeapFrog Productions -- Flexcoders

[flexcoders] DataGrid question

2005-11-14 Thread Kai Pradel
I am new to Flex and am having a hell of a time figuring out how to use the addItem method to add data to a DataGrid. I hope someone can give me a pointer. Here is what I am trying to do: I have defined two models: one with static content and one that is bound to text input fields that are

RE: [flexcoders] DataGrid question

2005-11-14 Thread Matt Chotin
Add newmodel.annotation. Matt From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Kai Pradel Sent: Monday, November 14, 2005 8:00 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] DataGrid question I am new to Flex and am having