An extended version of the Flex DataGrid control that provides features like column groups and renderers for non-text data.
Questions tagged [advanceddatagrid]
302 questions
0
votes
1 answer
sorting column data in advanceddatagrid flex while displaying
I am new to working on flex. I looked at several stackoverflow questions but they didnt seem to answer my question.
I am using Advanced data grid column to display my data in a table. I know that columns can be sorted using the controls on the table…

Shenoy Tinny
- 1,315
- 10
- 22
- 34
0
votes
2 answers
Disabling shift-click in a Flex 4 AdvancedDataGrid with allowMulitpleSelect enabled
I have an AdvancedDataGrid for which I would like to allow multiple selection. Do to several constraints, I want to disallow selecting items that are next to each other (Basically, you can't select multiple items with the same parent and parents are…

Tommy
- 150
- 1
- 8
0
votes
1 answer
Flex AdvancedDataGrid - Group By Property of Strongly Typed Object Not Working
I have an ArrayCollection of 'Lesson' objects. Each Lesson has the following fields: lessonId, lessonName, topicName. The data may look like this:
lessonId = 1, lessonName = Maths, topicName = Basics
lessonId = 2, lessonName = Physics, topicName =…

Chris
- 131
- 2
- 11
0
votes
1 answer
AdvancedDataGrid dynamic text Value Coloring - ItemRenderer problem
In my AdvancedDataGrid,
I am adding dynamic values to cells by dragging a cell value to other cells. While copying, I am setting the value to listData and setting the Red color to the value in ItemRenderer. Everything is working fine, but when I…

sri
- 1
- 2
0
votes
1 answer
Access to multiple ItemRenderers within an AdvancedDataGrid
I've create an AdvancedDataGrid where most of the cell are based on an ItemRenderer. The custom ItemRenderer (SoundBox) extends VBox. This custom component allow for simple changes in the background color based on user clicking on a cell.
Here is…

user310340
- 61
- 1
- 1
- 4
0
votes
1 answer
Flex AdvancedDataGrid - ColumnOrder With Formatter and ItemRenderer Question For Experts
I have a advanceddatagrid that has around 15 columns. Some are string,
some are numbers. I have shown 4 columns below.
The number columns have formatting done for zero precision and 2
digits precision. The itemRenderer is just to show Blue Color if…

user302128
- 1
- 2
0
votes
1 answer
Column rearrange property for flex s:DataGrid
In my flex project there is a Spark s:DataGrid and now there is a new requirement to give the column rearrange property to it (User should be able to rearrange the order by grading columns). Due to overall project dependencies I'm not able to use mx…

ANJ
- 301
- 1
- 2
- 14
0
votes
1 answer
Flex AdvancedDataGrid with expandable nodes: possible to make the alternatingItemColors start fresh after each expandable node?
Say I have this AdvancedDataGrid:

Robusto
- 31,447
- 8
- 56
- 77
0
votes
1 answer
how to make the last row of an as3 advanced datagrid editable while all other rows are not editable
I'm trying to make a single row of a data grid editable. so if I have 5 rows of complete data these will remain uneditable. however I will have added an additional empty row and this is the only row I want the user to have access to edit. this is…

kris
- 90
- 1
- 1
- 12
0
votes
2 answers
add a row to a datagrid where a user can input data in as3
what i am trying to achieve is to have data populate a datagrid from a query, this part works fine. but once the data has been populated i want to add an additional row which the user will be able to type into. so for example the grid will have 5…

kris
- 90
- 1
- 1
- 12
0
votes
1 answer
wpf DataGrid of UserControls
I am trying to have a DataGrid that shows a user controls in each cell of it's rows. highliting that the DataGrid have to be dynamic because columns count is dynamic for each case of use.
In my xaml code (XAML) i have this as a declaration of the…

AouledIssa
- 2,528
- 2
- 22
- 39
0
votes
1 answer
How to set Header Text of AdvancedDatagrid Column with Multiple Color in FLEX?
I would like to set multiple colors of header text of a column in my advanced data grid.
For Example:
Suppose header text is: Price File Id *
where * is for representing mandatory.
now I want "Price File Id" in black and "*" in red color.
Following…

akki
- 9
- 1
0
votes
3 answers
conditionally add an image to datagrid using an item renderer in as3
I am adding an image to a cell of datagrid using an item renderer embedded in a data grid column. I need to add an image to a cell only if data from the row of the cell meets certain requirements. something like below is what I am trying to…

kris
- 90
- 1
- 1
- 12
0
votes
1 answer
How to count the number of rows after filtering an advanceddatagrid?
I am trying to count the number of rows in an advanceddatagrid
I need a function which could count all item with or without filterFunction.
I tried some solution but none works. The best that I found, is to expand all items and use a cursor for…

Epharion
- 1,051
- 9
- 20
0
votes
1 answer
How to access MXML component instance in ItemRenderer
I have been developing an Adobe Flex (v3.5 Flex SDK) based application and I have a question on How we can access (call) a method written in MXML file (embeded in script tag) from the ItemRenderer file.
The MXML component has a datagrid and for one…

Raghavendra Nilekani
- 396
- 2
- 10
- 22