Tagged Questions

8
votes
1answer
515 views

Flex Vertical Datagrid

Can i have a datagrid that displays data vertically instead of horizontally ? for example, if this is my dataprovider: array('firstname':'John','lastname':'Doe'), ...
7
votes
2answers
8k views

how to sort a flex datagrid according to multiple columns?

I have a datagrid, populated as shown below. When the user clicks on a column header, I would like to sort the rows using a lexicographic sort in which the selected column is used first, then the ...
7
votes
2answers
7k views

what is the difference between invalidateList and invalidateDisplayList?

I have a DataGrid, populated with objects in an ArrayCollection. After updating one of the objects' fields, I want the screen to update. The data source is not bindable, because I'm constructing it ...
5
votes
2answers
384 views

Determine drag proxy when using itemRenderer on DataGrid

I'm using default drag/drop on Flex DataGrid, however, the dataGrid itself has an itemrenderer. Looks like: public class FlashFileDataGridRenderer extends Label{ public function ...
4
votes
3answers
4k views

Using validators in DataGrid - Flex

i have an editable DataGrid, something like: <mx:Datagrid editable="true" dataProvider="{arrayListPreferences}" id="preferencesGrid"> <mx:columns> <mx:DataGridColumn ...
4
votes
4answers
22k views

Setting background color for datagrid row in Adobe Flex

I need to programmatically change the background color for a single row in a datagrid in Flex. I've scoured the Net and found reference to "dg.setPropertiesAt," which is not a supported method ...
4
votes
9answers
12k views

How can I make datagrid height is equal to data content in Adobe Flex

In adobe Flex datagrid height is equally to fix height . I want to make datagrid height is depend data .
3
votes
2answers
629 views

How to merge cells in DataGrid/AdvancedDataGrid in Adobe Flex

I need to merge the cells as shown in the picture:
3
votes
2answers
569 views

Spark Datagrid memory usage with dynamic columns

I have a question about the Spark DataGrid and how it works in terms of garbage collection. What I'm finding is that if I dynamically add and remove columns from the DataGrid at runtime, the ...
3
votes
2answers
2k views

Flex 4.5 (Hero) s:Datagrid RowCount

Ok, just going nuts with this one. I used rowcount, in my previous mx.datagrid Now, with "s:datagrid", I've tried to use requesteMaxRowCount, and RequestMinRowCount (in desperation mode :/ ) The ...
3
votes
5answers
4k views

How can you display a multi-line column header using the Flex Spark Data Grid?

How can you display a multi-line column header using the Flex Spark Data Grid for Flex 4.5?
3
votes
1answer
2k views

Get or Set Cell Values in a Datagrid progmatically

In Flex 4 using a pre populated data grid, how can I get or set specific values programatically, IE I wont be using selectedItems etc. How do I reference the value of a cell in row 4 colum 6 for ...
3
votes
2answers
467 views

order of rows in a datagrid in Flex

I have a datagrid and it lists several rows as seqno | NAME | COMPANY 1 | BOB | D&T 2 | Jenny | M&Y 3 | Jane | D&T It is possible to have buttons as [MOVE UP] and [MOVE ...
3
votes
1answer
2k views

flex datagrid: how to do a multiple selection programmatically

I have I datagrid, on which I want to select multiple rows on a other user interaction than the one intended by the Programm. I'm wondering, whether I can programmatically select some rows depending ...
3
votes
2answers
2k views

Copy + paste out of a Flex DataGrid control

Is there a way to select a single cell in a Flex DataGrid, and then either select the text inside of the cell, or select the entire cell for copy + paste? It doesn't even have to copy into an excel ...
3
votes
2answers
5k views

How to set alternate row color in flex datagrid?

What is the method to set different colors for alternate rows in a flex datagrid? So that two adjacent rows are identified easily?
3
votes
2answers
2k views

Plugin to add pagination in a Flex Datagrid?

Is there a library or plugin that could be added to a Flex project to add pagination to a Flex Datagrid?
3
votes
2answers
3k views

Adobe Air/Flex + SQLite database problem

I'm still a newbie to Adobe Air/Flex, and still fairly new with SQL. I've downloaded this (http://coenraets.org/blog/2008/11/using-the-sqlite-database-access-api-in-air…-part-1/) code and have been ...
3
votes
2answers
11k views

How can i make a reusable labelFunction for Flex Datagrid?

I have a label function like : private function formatDate (item:Object, column:DataGridColumn):String { var df:DateFormatter = new DateFormatter(); df.formatString = "MM/DD/YY"; if ...
3
votes
2answers
7k views

Flex dataGrid itemRenderer, access cell width and height

When writing a custom itemRenderer, how do you reference the height and width of the grid cell that it will be rendered in? In such a way that it will resize correctly when the grid is resized. I am ...
2
votes
1answer
222 views

Flex 4.5: Spark DataGrid with custom ItemRenderes

Firstly sorry for the really lengthy question. I am trying to implement an Org.Chart using spark DataGrid. The data for the Org.Chart does not change and hence I am hard coding the values. I had to ...
2
votes
1answer
178 views

How to get selected values (using checkBox) from DataGrid in flex

i have a datagrid which is getting values from a XML file (getting this xml file from database using PHP and HTTP request in flex). i have created a checkbox in every row in data grid. and here is my ...
2
votes
3answers
68 views

Delete all rows in a DataGrid

I need to delete all existing rows from a data grid, i have tried using this but doesn't work: public function GetMusicList(obj:Object):void{ for(var j = 0; j < ...
2
votes
1answer
499 views

How to control a spark Datagrid's scroller position in Flex?

I'm using the new Spark Datagrid for a project, but I must confess the scroller is annoying me a little bit, so I would like to have some control over it. In other words, I would like to ...
2
votes
2answers
599 views

Datagrid sorting only on click of specific part in headerRenderer

I have a custom FilterColumnHeaderRenderer with an HBox, inside a Label for the Column Header, a Textinput for the filter text and Label to clear the filter. Now I want that the column sorting only ...
2
votes
2answers
467 views

Resize DataGrid When Shown

I'm trying to write my flex application so that it restores the user's settings when it starts up. The application has 3 data grids (only one is visible [on screen] at any time) and I simply save the ...
2
votes
3answers
330 views

Different row styling in datagrid FLEX

I'm trying to change the font color of a row in a datagrid if a certain word is found in a datafield. Is there a simple, inline way to do this? Thanks
2
votes
3answers
340 views

Key events on data grid in Flex3

I am working in Flex3. Here I have a datagrid which contains data. some columns are editable. when the user changes the column data web service is called. Here using function of focusOut, I am calling ...
2
votes
1answer
970 views

How to disable automatic sorting in Editable Datagrid in Flex 4

I have an editable datagrid. If sorting is applied by clicking any header of datagrid, it works fine. But after that, if data values are changed in any row of datagrid, sorting is applied ...
2
votes
1answer
383 views

adobe flex datagrid selectable columns

I'm trying to make a Flex (Advanced)DataGrid component with some mechanism where the user can toggle the visibility of the columns. I've crudely implemented this by reading in the columns into the ...
2
votes
3answers
646 views

Flex DataGrid: Change value based on another value?

I have a DataGrid in Flex, with one column a checkbox and another a numeric value. When the checkbox is clicked, the numeric value should change, either to 0 if the checkbox is unselected, or to a ...
2
votes
3answers
789 views

Add row to Flex DataGrid without changing dataProvider

I am creating the standard "Click to add row" control but I really don't want to dirty the dataProvider with a "placeholder" since it is bound to the model and could end up in the database. Is there a ...
2
votes
1answer
498 views

Flex Datagrid display item editor on hover

I have a datagrid and I want to display an item editor (text input) when the mouse is over the cells. Thanks in advance.
2
votes
1answer
367 views

Flex DataGrid labelFunction not getting called

I have a DataGrid where one of the columns has a labelFunction. When I run the application a scrollbar shows up in the DataGrid indicating to me that it has data but there is nothing in the DataGrid. ...
2
votes
2answers
3k views

How do I maintain selection in a DataGrid when the data changes?

I have a DataGrid and I set the DataProvider to my data. When my data changes the DataGrid loses the selected row and the scroll bar jumps back to the top. How do I maintain the selection and scroll ...
2
votes
1answer
593 views

Flex: linking dataProvider with custom itemRenderer in a DataGrid

Im working at a DataGrid which has a custom itemRenderer with a checkbox and a Label inside. Im struggling adding the the values from a xml to the wright label dynamically... how can I make the ...
2
votes
2answers
3k views

Force all item renderers to commitProperties?

I have an item renderer that checks an external source for display information. If that information changes, I want to force all item renderer instances to check it. What's the best way for force all ...
2
votes
3answers
1k views

Finding x,y position of a datagrid / adavancedDataGrid row in Flex

I have flex advancedDataGrid (could use dataGrid if that works better, though i like my meta-column headers), and i want to have a component popup on top of a selected row. The problem is, i can ...
2
votes
1answer
510 views

Using one data source for multiple datagrids in Flex3

I want to use one data source (e.g. an Array) for multiple Datagrids that have different filterFunctions attached and show different columns. First, I thought I use a very straight forward apporach: ...
2
votes
2answers
544 views

Flex DataGrid - how to find the maximum value in a column?

How would I find the maximum value in a specific column in a Flex DataGrid?
2
votes
1answer
891 views

Flex DataGrid ItemRenderer Issue

I have a grid filled with >1000 datasets. one column uses a custom itemRenderer which is used to display the value of a foreign key. All the datasets which are displayed without scrolling are ...
2
votes
2answers
1k views

save state of a dataGrid: visible columns, columns width and order

I want to save remotely (on a database) the state (visible columns, columns width and order) of a Flex3 DataGrid. For width and visibility I can simply save them by accessing each column attribute.. ...
2
votes
4answers
2k views

Can I set text on a flex Graphics object?

Is there anyway I can effectively call the equiv. of setText on a Flex Graphics object ? Specifically I'm using a custom cell renderer to display data in a datagrid. The renderer uses the Graphics ...
2
votes
4answers
6k views

How do you merge cells in a Flex Datagrid?

Is there any way to merge cells (vertically and/or horizontally) in a datagrid? At least, for example, is there a way to show that certain datagridcolumns belong to one group. For example, I'll take ...
2
votes
2answers
7k views

How can I know when a Button in a Flex DataGrid itemRenderer is clicked?

I have a DataGrid component that displays a few columns of data. It has one additional column that displays a Button that allows the user to take an action with regard to the record. <mx:DataGrid ...
2
votes
2answers
2k views

flex datagrid - making grid height dynamic and component that contains it

HI, i want to build a datagrid which will have a dynamic height value because the number of rows will always be different. I also want to communicate the height back to the component holiding it so ...
2
votes
1answer
3k views

“freeze” one column in flex datagrid

I'm using a datagrid to display a column of date ranges and several columns of data. I'd like to make the first column (the date ranges) fixed; i.e. that column stays in place when the user scrolls ...
1
vote
1answer
19 views

Flex - DataGrid - text field with carriage returns causing grid rows to grow vertically, how to prevent?

I have a flex (flash builder 4.6) DataGrid. One of the columns is a notes field. If there are carriage returns (multiple lines of text) in the field, and the row is the first row in the grid, it ...
1
vote
1answer
21 views

Is there any way to focus on a cell of a DataGrid without setting it to editable?

I am currently working on making my Flex application accessible. I have an mx DataGrid that I am using for showing complex data. Each row contains information about a person and one of the columns ...
1
vote
2answers
62 views

Change cursor on datagrid row

I'm working on a flex project, and have a datagrid that I'd like the cursor to change when hovering over any row containing data. I have double click enable on the datagrid and I'd like to indicate ...

1 2 3 4 5 11