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
1
vote
0 answers

AdvancedDataGridView - set custom filter programmatically

I use the AdvancedDataGridView (https://github.com/davidegironi/advanceddatagridview) connected on a Datasource. The user is able to create custom filter without any problem. What I try to do is to define the same custom filter but…
StephD
  • 11
  • 1
1
vote
1 answer

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 and they display properly, however when I get to…
leshow
  • 1,568
  • 2
  • 15
  • 30
1
vote
1 answer

How do I create a Hierarchical Cursor from the dataProvider of an AdvancedDataGrid?

In a previous application that I had written, I had a Class that extended AdvancedDataGrid (ADG). It contained the following code: package { public class CustomADG extends AdvancedDataGrid { .... // This function serves as…
1
vote
1 answer

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. This component is going to be used as an advanced…
Scott Szretter
  • 3,938
  • 11
  • 57
  • 76
1
vote
1 answer

Flex Advanced Data Grid display hierarchical tree using flat data?

Is it possible to build a hierarchical advanced data grid (or similar) without using hierarchical data pre-built? For example, if I want to show in the advanced data grid (or similar): Men John Frank Women Mary Susan Sally But my data…
1
vote
3 answers

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 that is added after the initial load doesn't cause…
Ocelot20
  • 10,510
  • 11
  • 55
  • 96
1
vote
1 answer

Setting the AdvancedDataGrid's row height while AdvancedDataGridRendererProvider rendering

Flex Guys, Not able to setting height of row in AdvancedDataGrid using custom AdvancedDataGridRendererProvider datagrid renderer. Snapcode as here
javaamtho
  • 382
  • 3
  • 7
  • 20
1
vote
3 answers

Why is AdvancedDataGrid not updating when the HierarchicalData dataProvider is updated?

I have an AdvancedDataGrid (ADG) with a HierarchicalData dataProvider:
Eric Belair
  • 10,574
  • 13
  • 75
  • 116
1
vote
1 answer

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 AdvancedADataGrid? (Need to set its height in a so manner…
artaxerxe
  • 6,281
  • 21
  • 68
  • 106
1
vote
2 answers

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 value is already the current selected item. The…
bon_t
  • 97
  • 1
  • 7
1
vote
1 answer

Can AdvancedDataGrid automatically detect AdvancedDataGridColumnGroup

I was trying the example from this link: Adobe Flex 4 * Creating column groups The data is import mx.collections.ArrayCollection; [Bindable] private var dpHierarchy:ArrayCollection = new ArrayCollection([ …
Garbage
  • 1,490
  • 11
  • 23
1
vote
3 answers

Flex AdvancedDataGridItemRenderer backgroundColor/textColor not rendering

I have the following class that extends AdvancedDataGridItemRenderer: package { import mx.controls.advancedDataGridClasses.AdvancedDataGridItemRenderer; public class TestADGIR extends AdvancedDataGridItemRenderer { public…
Sean Staats
  • 297
  • 4
  • 10
1
vote
1 answer

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 (pretty hard) at optimizing its performance. Turns…
fred august
  • 1,109
  • 12
  • 31
1
vote
2 answers

Flex 3 AdvancedDataGrid Grouping

Is there a way to have ungrouped and grouped items mixed in the same datagrid? For example, think of a grid that lists the root items on a C:\ drive. Obviously, we would want the Directory Structure to be group and expandable. But the files on the…
Kyle
  • 17,317
  • 32
  • 140
  • 246
1
vote
4 answers

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 how to resolve this? Any help would be very much…
NCD
  • 11
  • 1
  • 2