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
3
votes
4 answers

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 callback, but it's not being called except for groups at…
Shawn Hurley
  • 85
  • 1
  • 4
  • 10
2
votes
1 answer

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 far. Is this possible to achieve? If not, is it…
user768009
  • 23
  • 2
2
votes
1 answer

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 labelsGridArray:Array = [ { tag:"apple" }, { tag:"*banana" }, {…
bon_t
  • 97
  • 1
  • 7
2
votes
1 answer

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 it. Like this I have total 100 parent columns.…
2
votes
2 answers

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, everything works perfectly. It sorts it hierarchically…
Ocelot20
  • 10,510
  • 11
  • 55
  • 96
2
votes
1 answer

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 exact), the separator between the second and third…
fred august
  • 1,109
  • 12
  • 31
2
votes
1 answer

AdvancedDataGrid initial column sort

I have an AdvancedDataGrid with mx:HierarchicalData as DataProvider. I need the grid to bi sorted on the second column initially but can't find any way to specify this. Even if I sort the collection befor setting it into the mx:HierarchicalData only…
racer
  • 4,497
  • 3
  • 18
  • 13
2
votes
3 answers

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 life of me figure out how to do this! Side note: I…
eabrand
  • 23
  • 2
2
votes
1 answer

Grouping Collection separating 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 AC var name is…
invertedSpear
  • 10,864
  • 5
  • 39
  • 77
2
votes
3 answers

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 figure out how to reference an actual rendered row of…
zak kus
  • 41
  • 1
  • 5
2
votes
1 answer

AdvancedDataGrid Flex Analogue

Could you suggest me please any Flex 3 (MX) component, which works like Flex's AdvancedDataGrid but much easier? I need only hierarchical view for data and ability to easily customize it's view. Simplest ever tree with depth of 2, with no borders…
Vladimir Ignatev
  • 2,054
  • 1
  • 20
  • 34
2
votes
1 answer

Setting header color of one column in AdvancedDataGrid doesn't work

Need help with this issue. I need to change header color. The following doesn't work: column.setStyle(StyleNames.HEADER_COLORS, "#FF7F00");
2
votes
3 answers

Runtime error when compiling flex application with ANT

I'm using a licensed version of Flex Builder Pro to develop an application. I compiled the swc and generated swf successfully using ANT tasks. It contains an Advanced Data Grid also. When this application is accessed, I get a runtime error and it…
jobinbasani
  • 2,075
  • 6
  • 47
  • 66
2
votes
2 answers

How to add an icon to an AdvancedDataGrid column header and keep word wrap feature for the text

As stated, I'm trying to obtain column headers consisting of an icon and wrappable text in a flex AdvancedDataGrid. (EDIT: I forgot to mention an important part of the context: the columns are added dynamically, in actionscript. This apparently…
2
votes
2 answers

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 MouseDown event, but not having luck! Okay, I think I've…
cfans
1
2
3
20 21