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
1 answer

Flex AdvancedDataGrid caching records

I have an AdvancedDataGrid(ADG) bound to an ArrayCollection. ArrayCollection is populated from my Oracle database. Now, the records I have in the database are in millions and sometimes, based on the worst case criteria by the user, I can get around…
online19
  • 125
  • 5
  • 17
0
votes
1 answer

AdvancedDatagrid does not display grouped data

I am trying to display grouped data in AdvancedDatagrid but the data does not show up. When I specify the dataprovider without the grouping collection I am able to see the data. Is there something wrong with this code?
arjunurs
  • 1,062
  • 2
  • 17
  • 29
0
votes
1 answer

Flex AdvancedDataGrid with IHierarchical Objects

I have a problem with the model classes of my advancedDataGrid. Here are my model classes: package module.testPlanModule { import flash.events.Event; import flash.utils.IDataInput; import flash.utils.IDataOutput; …
TheFrenchGuy
  • 233
  • 1
  • 3
  • 14
0
votes
1 answer

AdvancedDataGrid expand root node

I'm having troubles expanding the root node of my AdvancedDataGrid. Simplified code below: adg.addEventListener(FlexEvent.CREATION_COMPLETE, adgCreationHandler); private function adgCreationHandler(event.FlexEvent): void { …
Sebastian
  • 436
  • 5
  • 24
0
votes
1 answer

Flex AdvancedDataGrid listItems strange behaviour

I have the following XML, that is the dataprovider (as a Hierarchicaldata) of an Advanced DataGrid: public var reqData:XML =
TheFrenchGuy
  • 233
  • 1
  • 3
  • 14
0
votes
1 answer

If we hover over the Icon in AdvanceDataGrid, item hovering effect (slight highlighting) does not appear?

Hovering effect on AdvanceDataGrid doest not appear if we take mouse cusor over the icon of item. any solution?
0
votes
2 answers

Remove Selected Items from Search Results

Use Case: End-User searches for something and an ArrayCollection is returned with Result objects. This is displayed in a data grid. End-User selects a few of the search results and "moves" it over to another datagrid for use later. End-User does…
0
votes
1 answer

AdvancedDataGrid: row moves to the bottom of the ADG when editing a value

I have an AdvancedDataGrid with editable set true on some columns. If i edit one of the values in the ADG, the row moves to the bottom of the node/branch containing the items im currently editing. My AdvancedDataGrid is defined in ActionScript3, and…
Sebastian
  • 436
  • 5
  • 24
0
votes
1 answer

AdvancedDatagrid Iterating Through Each Row of the Open Leaf/Tree

I need to get the data for each row in an advanceddatagrid where the nodes are open. For example, my ADG looks like this: + Science - Math - Passed John Doe | A+ | Section C Amy Rourke | B- | Section B - Failed Jane Doe …
Batuta
  • 1,684
  • 17
  • 48
  • 62
0
votes
1 answer

tree hierarchy in column for advaced data grid in flex

I am creating a dynamic advanced data grid and want to have show parent child hierarchy in columns of the datagrid i.e. when i click on a particular column header of a datagrid it should expand horizontally showing all its children as below Before…
0
votes
2 answers

AdvancedDataGrid total sum of branch nodes

Introduction: I have an AdvancedDataGrid displaying hierarchical data illustrated by the image below: The branch nodes "Prosjekt" and "Tiltak" display the sum of the leaf nodes below. Problem: I want the root node "Tavle" to display the total sum…
Sebastian
  • 436
  • 5
  • 24
0
votes
1 answer

Change the visibility of itemRemderer

I have and add button (last row) in one column of the AdvancedDataGrid. for the row having the add button the rest of fields are not visible. On click of the add button a new row is added to the grid for the user to add. After that this button…
0
votes
1 answer

Flex advanceddatagrid show effects when tree is expanded

How to tween/add effects for the action of tree expanding/collapsing in an AdvancedDataGrid in flex. I googled a bit, searched the livedocs, but there doesn't seem to be a concrete example for the same. Can someone shed light on this? A code snippet…
Neeraj
  • 8,408
  • 8
  • 41
  • 69
0
votes
1 answer

Flex Advanced Datagrid - access value of itemrenderer of one column from other column

I have a AdvancedDatagrid with two columns lets say. First column has item renderer as DropdownList. Now, on change of DropdownList, I want to update label in second column, how would I do that?
Tyr1on
  • 1,999
  • 2
  • 13
  • 20
0
votes
0 answers

Flex 4.5 advanced datagrid with dynamic columns and groupd columns

I am trying to create an advanced data-grid with grouped columns. The problem is, I don't know how many columns the ADG should have. Each group of columns contains two columns, but The number of groups is set by a selectbox. This method creates the…
Ido Barash
  • 4,856
  • 11
  • 41
  • 78