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

Flex 4 - filtering XMLListCollection in AdvancedDataGrid

I have an advancedDataGrid that is populated with XMLListCollection data. I'm trying to filter that XMLListCollection but it's not refelcting in the ADG. All my tests indicate that it is filtering the data. Can someone lend a hand?? // …
Mark P.
  • 282
  • 1
  • 4
  • 16
0
votes
2 answers

Overlay text on AdvancedDataGrid in Flex 3

I am trying to overlay a label onto an AdvancedDataGrid when there are no results returned from a call for the data. Here is a mockup of what I am trying to accomplish https://i.stack.imgur.com/6Djga.png I tried following this previous answer:…
david
  • 3
  • 1
0
votes
1 answer

I'm having issues with my AdvancedDataGrid in Hierrachical view

I'm having a strange issue with my AdvancedDataGrid. I have a pretty basic (no frills) XML file that I'm pulling the data from and trying to create a hierarchical view in my ADG. It mostly works, but when my top level node only has one child I see…
Mark P.
  • 282
  • 1
  • 4
  • 16
0
votes
2 answers

Flex AdvancedDataGrid with Grouping, how do I get objects to appear under first GroupingField if the second GroupingField is null?

I am using an AdvancedDataGrid with two GroupingFields. The dataProvider has a list of objects with these two field values, but occasionally the second field value can be null. When it loads, the AdvancedDataGrid UI has a root folder (first…
shadenite
  • 474
  • 6
  • 9
0
votes
2 answers

Bindingsource filter is not working right

I need to filter ADGV between dates with datepicker1 and datepicker2, but my code only filter Day, no matter the month or year it filters between DAYS only. I tried to messagebox my var values : string with 3/1/2018 datetry is 01.03.2018 datepicker1…
0
votes
1 answer

Flex3 AdvancedDataGrid : how to add a new column based on existing one?

I have a AdvancedDataGrid in flex3 (Flex 3) with 4 columns: id : int category : String name : String isPreferred : Boolean And I would like to add a fifth column favorite : Image The value of favorite will be based on the value of isPreferred…
xalibeut
  • 13
  • 3
0
votes
1 answer

ItemRenderer shows through ItemEditor on AdvancedDataGrid

I'm pretty new to Flex, so there's probably a good chance I'm missing something obvious, but in the first example code, everything works as expected. When not editing the cell, it shows a centered date as plain text. When editing, it shows a…
Ocelot20
  • 10,510
  • 11
  • 55
  • 96
0
votes
1 answer

Sorting dates in adg

I have an advancedDataGrid and I would like to sort the adg according one AdvancedDataGridColumn(studyDate) which use strings in format DD/MM/YYYY(I receive like this from the server):
alicia
  • 597
  • 1
  • 5
  • 17
0
votes
1 answer

Flex AdvancedDataGrid HierarchicalData XML results in unwanted rows

I guess the best way to explain my issue is to describe it in terms of the hierarchical XML data example on Livedocs. Here, the XML is of the form
Marc
  • 104
  • 1
  • 10
0
votes
3 answers

How to set hovered color in a MXAdvancedDataGridItemRenderer?

I am trying to create an item renderer for an AdvancedDataGrid, using a MXAdvancedDataGridItemRenderer. When I attach a sample custom item renderer (MXAdvancedDataGridItemRenderer) to hierarchical data in an AdvancedDataGrid the item renderer does…
mrcrowl
  • 1,265
  • 12
  • 14
0
votes
1 answer

Listening for dataChange event in AdvancedDataGrid

This is my code: and in my ActionScript code: protected function…
artaxerxe
  • 6,281
  • 21
  • 68
  • 106
0
votes
1 answer

Error when extending AdvancedDataGridRenderer

I have set the itemrenderer package like that: package myrenderers { import mx.controls.advancedDataGridClasses.AdvancedDataGridItemRenderer; public class theHeaderRenderer extends AdvancedDataGridItemRenderer { public function…
flexyBoy
  • 29
  • 7
0
votes
1 answer

Issue with itemEditor in AdvancedDataGrid when using hiearchical data as dataProvider

Following is the sample code. While I start editing either in optionId column or option column, the other rows of the same column are also get affected and reflecting the same value. But when I am editing in other columns it is working fine... Don't…
0
votes
1 answer

Using Datavisualization.swc in my Flex Builder

I have upgraded my Flex Builder compiler to SDK 3.2 from SDK 3.0 and as a result unable to use AdvanceDataGrid in my application anymore. I think I need to download the 'datavisualization_SDK3.2.zip’ and add it to my build path to be able to use it…
Ashine
  • 4,517
  • 3
  • 24
  • 26
0
votes
1 answer

Flex 3: How to add images to advancedDataGrid column

I need to modify an old flex 3 project and I need to create an advancedDataGrid that looks like this: example1 I need to add more than one image in each line of that column. I have an array that has the information about the images that I need to…