Questions tagged [advanceddatagrid]

An extended version of the Flex DataGrid control that provides features like column groups and renderers for non-text data.

302 questions
7
votes
1 answer

How to create an overlay in advanced 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
Roman Kagan
  • 10,440
  • 26
  • 86
  • 126
6
votes
2 answers

AdvancedDataGrid does not displays object properties

I have following data: var data: ArrayCollection = new ArrayCollection( [ { name: "ProductA", user: {login: "loginA", email: "emailA"} }, { name: "ProductB", user: {login: "loginB", email: "emailB"} }, …
AntonAL
  • 16,692
  • 21
  • 80
  • 114
5
votes
1 answer

How to merge cells in DataGrid/AdvancedDataGrid in Adobe Flex

I need to merge the cells as shown in the picture:
Neeraj Gulia
  • 640
  • 8
  • 24
4
votes
2 answers

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 than the MAX, MIN or AVG This code works on…
Dave
  • 917
  • 1
  • 8
  • 20
4
votes
4 answers

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 and I even tried using
Pieter van Niekerk
  • 848
  • 15
  • 42
4
votes
4 answers

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, average etc of each column. Does AdvancedDataGrid…
udara
  • 61
  • 2
  • 3
4
votes
1 answer

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 want to keep the tree functionality and change the…
Barrest
  • 121
  • 2
  • 5
3
votes
2 answers

Flex ItemRenderer not passing mouseover to parent

In an AdvancedDataGrid using an MXAdvancedDataGridItemRenderer, mouseover was not being passed on to the AdvancedDataGrid. After days of struggle, I wanted to share this: In your data setter, assign super.data with the new value for mouse events to…
MonoThreaded
  • 11,429
  • 12
  • 71
  • 102
3
votes
4 answers

Flex: Expand AdvancedDataGrid Tree Column programmatically

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); But I don't seem to have access to this property…
CodeMonkey
  • 300
  • 1
  • 6
  • 18
3
votes
1 answer

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 Flex I have a advanced datagrid with…
Eswaran
  • 35
  • 4
3
votes
2 answers

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. You can see this behavior by compiling the code from…
Gerhard Schlager
  • 3,155
  • 1
  • 31
  • 53
3
votes
2 answers

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 I'd like a function that tells me that 7 lines…
fred august
  • 1,109
  • 12
  • 31
3
votes
4 answers

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 fields IN a the grouping. There is working solution…
Frank
  • 780
  • 1
  • 10
  • 22
3
votes
3 answers

Flex AdvancedDataGrid sort

I have an AdvancedDataGrid that is being populated by customer data. Each customer has 3 monthly products(1, 3, 6), and also a passed field specifying whether the customer qualifies for any of the monthly products. Now the grid is sorting the…
Pieter van Niekerk
  • 848
  • 15
  • 42
3
votes
1 answer

How to determine currently sorted header column in data grid?

I want to know which header the user clicked on to give the currently sorted view. Is there an API in flex framework that I can use to achieve this? Hopefully I can get back a column index so I know how it is currently sorted. Thanks, Mike
SIr Codealot
  • 5,331
  • 9
  • 33
  • 45
1
2 3
20 21