Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
1answer
323 views

How to create an overlay in advanved grid in Flex

I'd like to know how to create an "overlay" in Flex's Advanced Grid? See the sample here http://tinypic.com/r/4ieccm/4
3
votes
2answers
541 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
732 views

AdvancedDataGrid does not displays object properties

I have following data: var data: ArrayCollection = new ArrayCollection( [ { name: "ProductA", user: {login: "loginA", email: "emailA"} }, { name: ...
3
votes
3answers
10k views

How do I sort in a Flex AdvancedDataGrid - callback isn't being called

I have an AdvancedDataGrid that uses customer grouping of data. Not all of the groups will be at the same level in the hierarchy, and groups can contain both groups and members. We have a sort ...
3
votes
2answers
1k views

Can you return a String from a summaryObjectFunction

In a Flex AdvancedDatGrid, we're doing a lot of grouping. Most of the columns are the same for the parents and for the children, so I'd like to show the first value of the group as the summary rather ...
2
votes
1answer
43 views

Is it possible to insert an HBox between a AdvancedDataGrid Header and the the grid data/content?

I need to insert a Box containing some text that appears between the grid header and main content and spans all the grid columns. I've been searching and experimenting (addChildAt()) but no luck so ...
2
votes
1answer
669 views

Set alternate color for AdvancedDataGrid - one for parent node and other for child nodes

It seems there are various ways to set the background color for a datagrid. See: How to dynamically change background colour of datagrid row? See: Setting background color for datagrid row in Adobe ...
2
votes
1answer
280 views

Vertical Grid Line in datagrid disappears

Apology in advance - this is sort of a long shot, but thought I'd try. I have a fairly large app that employs an AdvancedDataGrid component. When resizing a specific column (the second one to be ...
2
votes
2answers
461 views

AdvancedDataGrid: how to tell how many rows are currently visible?

Does anyone know how to query an ADG (or its rows) to figure out how many rows are currently visible (i.e. not collapsed) when displaying different levels of a hierarchical collection? In other words ...
2
votes
3answers
790 views

Flex Difference between AdvancedDatagrid and DataGrid? Are footer rows supported?

What is the difference between normal DataGrid and AdvancedDatagrid? Sorting, dragging columns, resizing columns are supported even in normal datagrid. I want to add footer details like summery, ...
2
votes
1answer
3k views

ItemRenderer for TreeColumn on AdvancedDataGrid in Flex

Is it possible to use a renderer for for a treecolumn in an advanceddatagrid and still keep the hierarchal functionality? If I use a renderer provider I lose the the arrow for the tree dropdown. I ...
2
votes
1answer
271 views

Grouping Collection seperating numeric 5 from String “5”

BackGround: I have an advanced data grid. The data provider for this ADG is an ArrayCollection. There is a grouping collection on an ID field of this AC. Example of a couple items within this AC the ...
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
2answers
5k views

Flex AdvancedDataGrid Tree Custom Drag

I'd like to implement a custom drag on an AdvancedDataGrid tree structure, which only allows the drag on the branches (not leaves). I'm having much difficultly with this, trying to use the ...
2
votes
4answers
11k views

Flex: Expand AdvancedDataGrid Tree Column programatically

Does anyone know how to programmatically expand the nodes of an AdvancedDataGrid tree column in Flex? If I was using a tree I would use something like this: dataGrid.expandItem(treeNodeObject, true); ...
1
vote
1answer
19 views

Get The Items Under An Expanded Node in AdvancedDataGrid

Is there a way to get the items which are under an expanded ADG tree node? Given the sample tree node: - Atlantic Celtics Nets Knicks Sixers Raptors + Central + SouthEast + ...
1
vote
0answers
47 views

Creating Dynamic Pivots with Grouping on the Fly

I would like to create a pivot as shown here: http://www.java2s.com/Code/Flex/Grid/HierarchicalAdvancedDataGridColumnGrouping.htm How ever I want to be able to do this dynamically. The usage in the ...
1
vote
0answers
5 views

Disable single key input in flex

I have an AdvancedDatagrid built up dynamically basing on xml data retrieved from http services. The last row contains columns totals and to simulate its footer behavior it has been foreseen a custom ...
1
vote
1answer
29 views

Flex AdvancedDataGrid not populating properly

I'm having trouble getting an AdvancedDataGrid to populate properly within an app I'm working on. If I use the sample code found on this page ...
1
vote
1answer
32 views

Drag and Drop in a POPUP in Flex 4

I wanto do a simple dragdrop in an advancedDataGrid which is in a popup window. The popup window is inside a Vbox and the Vbox is inside a canvas. The item which will be dragged is inside a Group and ...
1
vote
1answer
59 views

AdvancedDataGrid - Start to edit the selected row when a button is clicked

I want to allow users edit Flex AdvancedDataGrid selected row by button click instead by click on AdvancedDataGrid itself. So i decide to dispatch itemEditBegin event of AdvancedDataGrid when user ...
1
vote
0answers
38 views

How to tell whether a cell belong to a group row / item row in Flex?

I created a Advanced Data Grid and implemented a grouping using GroupingCollection2 on it. I implemented a custom Item Renderer and when I start to scroll horizontally, the cells belong to the ...
1
vote
1answer
240 views

AdvancedDataGrid dataField - how to use a subarray or object in flex?

I have an advanced data grid in flex (flash builder 4). It's dataProvider is pointing to an ArrayCollection (this._encounters). Inside that array collection is a property that is an object (a ...
1
vote
1answer
281 views

Dynamically adding rows AdvancedDataGrid Flex

I have an AdvancedDataGrid being built dynamically from an html table. The html is provided by a server so my code has to work dynamically for different columns/rows. I have the columns being built ...
1
vote
1answer
148 views

Flex component - vbox vs group why does one compile, other does not?

Trying to understand why when creating a component in flex (flash builder 4) I am unable to create a component from file->new component and reference "data.", but a slightly different sample works. ...
1
vote
1answer
130 views

How to apply formatting to data feeding AdvancedDataGrid in ActionScript 3.0

I'm using the Halo AdvancedDataGrid component, in which the default itemEditor for each column is mx.controls.TextInput. For example, the data provider is: [CODE][Bindable] private var ...
1
vote
2answers
195 views

HierarchicalCollectionView: One time sort?

I have an AdvancedDataGrid that relies on a HierarchicalCollectionView as it's dataProvider. What I'd like to do is sort the data when it is first loaded, but then disable the sort so that anything ...
1
vote
0answers
334 views

Adobe Flex: AdvancedDataGrid Grouped columns - Performance

When I create a grid with 1000 columns, the ADG performs well. When I create grouping column, the vertical scroll bar performance real bad. Say, I have one parent column with 10 child columns inside ...
1
vote
2answers
265 views

How to display all rows from an AdvancedDataGrid, without scroll?

I have an Advanceddatagrid that has its variableRowHeight property set to true. I need this AdvancedDataGrid to have its verticalScrollBarPolicy "off" also. How can I show all rows in that ...
1
vote
2answers
218 views

Flex 4 - How do I keep track of last selectedItem in datagrid?

I"m using Flex 4 and an AdvancedDataGrid. I need to keep track of the previously selected item. I can't think of where to capture this though. In an itemClickHandler method, the grid's selectedItem ...
1
vote
1answer
86 views

AdvancedDataGrid: optimizing adding to the underlying dataProvider

friends, I know ADG related questions generally get ignored because "it's a crappy component". Indeed, it is not one of my favorite pieces of code ever, but I'm stuck with it and have been working ...
1
vote
2answers
484 views

Flex 4 headerWordWrap in AdvancedDataGridColumn does not work

I have tried various options to get headerWordWrap to work with an AdvancedDataGridColumn. I've even tried using headerWordWrap as a property in the AdvancedDataGrid. Nothing works. Does anyone know ...
1
vote
2answers
731 views

How to sort AdvancedDataGrid with hierarchical data?

I have an AdvancedDataGrid with a HierarchicalCollectionView as its dataProvider. When I view the grid with the dataset I'm working with, and click the header of the column I wish to sort on, ...
1
vote
2answers
385 views

Sort Columns in advancedDataGrid

I'm making an application where I display an AdvanvedDataGrid with one column with dates(in format DD/MM/YYYY) and another with datetimes (in format HH:MM). I'd like to sort dates according with the ...
1
vote
2answers
1k views

Issues with Spark DropDownList as itemEditor within AdvancedDataGrid

I'm trying to use the Spark DropDownList as itemEditor in an AdvancedDataGrid. Howerver, I've stumbled onto two issues: Clicking on a item in the DropDownList changes the selected row in the ADG. ...
1
vote
4answers
785 views

Sort Grouped Columns in AdvancedDatagrid

I#m looking for a solution to sort all grouped colums in advancedDatagrid. It should be the same behavior like clicking in a columns head. Please note, i'm not looking for a solution to sort the ...
1
vote
1answer
514 views

AdvancedDatagrid DataTipFunction

i have a grouped AdvancedDatagrid. It looks like... dataProvider - GroupingCollection2 - Grouping - GroupingField - summaries - summaryRow - fields. Sorry for the strage Codefragemt. I try everything ...
1
vote
1answer
705 views

Add row dynamically to AdvancedDataGrid

I would like to add new row on the fly (runtime) to my AdvancedDataGrid. I can add it to the data model, but couldn’t find a way to make the table render and show the new row. What i am seeking for ...
1
vote
1answer
632 views

Update hierarchical data provider in advanced data grid during drag and drop

I am trying to drag and drop hierarchical data in the same advanced data grid, and I would like the data provider to updated when the ADG is updated. (I want to be able to save and load this tree, so ...
1
vote
0answers
154 views

AdvancedDataGridItemRenderer systemManager property is NULL

I have an AdvancedDataGrid. Occasionally, when I roll over the cells immediately after changing the dataProvider, I get a null pointer. The null pointer is caused by the systemManager property of the ...
1
vote
4answers
254 views

Flex 4 How do I access a specific cell by index?

I would like to edit a cell by the row and column indexes so essentially do the following: advDataGrid[2][3] = "Dogs" so that I am setting the data grid row 2 and column 3 to Dogs. I cannot for the ...
1
vote
2answers
1k views

Flex Spark ComboBox in an MX AdvancedDataGrid

I would like to use a combobox as the itemEditor for one of the columns of an AdvancedDataGrid. I looked around and decided to use Spark ComboBox components - they're slick and seem to natively ...
1
vote
1answer
405 views

Flex AdvancedDataGrid slow on performance while being resized

I have a AdvancedDataGrid which is placed inside a resizable container (custom panel) and fixed at 100% width and height. Datagrid has about 100 rows and 15 columns. When I try to resize the container ...
1
vote
2answers
3k views

AdvancedDataGrid horizontal/vertical scroll bar problems. (Flex)

So, I have an AdvancedDataGrid that needs to live inside a Canvas. My problem is that when you do something like this you get two sets of scroll bars. Also, the horizontal scroll bar for the ...
1
vote
2answers
1k views

Flex AdvancedDataGrid - Remove sort arrow

Is it possible to completely remove the sort arrows on an AdvancedDataGrid header? I know that you can kinda do this by using <mx:AdvancedDataGrid sortExpertMode="true"/> and I even tried ...
1
vote
1answer
187 views

Multiple update of values in a row in a Flex DataGrid or AdvancedDatagrid

How can i update multiple cells of the same row changing the value of a single cell of the same row ?? Example: id, height, weight, fat percentage, corporal mass. When i change one of the values in ...
1
vote
1answer
171 views

How can I programmatically get and set column sorting parameters in AdvancedDataGrid?

How can I programmatically get and set column sorting parameters in AdvancedDataGrid?I'm especially interested in value that indicates that user have sorted data in AdvancedDataGridColumn by clicking ...
1
vote
3answers
763 views

How to automate vertical scrolling in Flex AdvancedDataGrid when dragging item below bottom of visible rows?

I have an AdvancedDataGrid with XML dataProvider. Drag and drop in enabled, and works within the visible rows of the ADG. HOWEVER, if I attempt to drag an item past the bottom-most visible row of the ...
1
vote
0answers
817 views

Flex 3 AdvancedDataGrid HierarchicalData selecting entries after sorting acting weird

I am using an AdvancedDataGrid to display hierarchical data. My data is an ArrayCollection of custom objects, which have a bunch of simple properties and one property containing a list of ...
1
vote
1answer
540 views

Flex advanced datagrid styling

I'm using an advanced datagrid in a system I'm building. the design PSD from the designer includes a special background on rollover. So, I need the background of the cells in a row to get the ...

1 2 3 4 5