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
PHP Data Grid MYSQL
I have downloaded PHP Grid from this URL. http://www.phpgrid.org/ (free)
I can now connect to db and see the table list and all.
Now, what I want to do is, I don't want the user to edit the primary key for each row in Add and Edit functionality.
I…

user3350885
- 739
- 4
- 16
- 38
0
votes
0 answers
3 state checkbox in advancedDataGrid when grouped using data as arrayCollection
I am looking for a 3 state checkbox added in advancedDataGrid when data is grouped, similar to the one i find in the search
http://techrays.wordpress.com/2008/02/18/a-3-state-checkbox-in-an-advanceddatagrid-itemrenderer/
this is really good other…
0
votes
2 answers
advanceddatagriditemrenderer formatting based on column information
I need to be able to change the formatting of rows and cells based on whether the information being displayed has been flagged as in violation of business rules. I've made a custom advanceddatagriditemrenderer and gotten it to do the formatting I…

John M
- 310
- 4
- 15
0
votes
1 answer
Capture AdvancedDataGrid column reordering
I am trying to preserve the order, width, and visibility of columns in my advanceddatagrid. I've managed to get visibility with a click event on the TableColumnFilter and width by having the advanceddatagrid listen for a stretch event, but I can't…

John M
- 310
- 4
- 15
0
votes
0 answers
sorting Datagrid to highlight rows
I currently have an advanced Datagrid which I have customised to highlight rows based on a conditional statement. I need to now sort the datagrid based of a specified column and then highlight the top 20%. so far I can get the row index and change…

kris
- 90
- 1
- 1
- 12
0
votes
2 answers
AdvancedDataGrid hell: data on grouping rows
I need a hierarchical grid that shows data in columns for the parent rows as well as the child rows.
- a parent | 1234 | data | data |
a child | 2222 | data | data |
a child | 212 | data | data |
I've tried to make ADG work, but by default…

Richard Haven
- 1,122
- 16
- 31
0
votes
0 answers
Show more information in the "GroupingField" of the AdvancedDataGrid
When i use the AdvancedDataGrid in Flex4.6, i want to show my data like this:
-AA | AAInfo1 | AAInfo2 |
aa | aaInfo1 | aaInfo2 |
bb | bbInfo1 | bbInfo2 |
cc | ccInfo1 | ccInfo2 |
-BB | BBInfo1 | BBInfo2 |
dd | ddInfo1 | ddInfo2 |
…

tutuge
- 31
- 6
0
votes
1 answer
Replacing a NaN value with null in DataGrid in flex

kris
- 90
- 1
- 1
- 12
0
votes
1 answer
Flash Builder case insensitive sort with AdvancedDatagrid header click
After reading all I could find on the subject I implemented the following sortCompareFunction...
private function value_sortCompareFunc(itemA:Object, itemB:Object):int {
return ObjectUtil.stringCompare(itemA.value, itemB.value, true);
}
When…

user278859
- 10,379
- 12
- 51
- 74
0
votes
1 answer
Flex: AdvancedDataGrid Tree dropParent
I have an AdvancedDataGrid tree with a ArrayCollection as its dataprovider. Now, for instance, i drag a leaf from one node to another node. To catch the event I'm adding a Listener to…

Lukas Widmer
- 33
- 2
- 4
0
votes
1 answer
Replace comma with dot in Flex HierarchicalData with own renderer as itemEditor does not work
I create an AdvancedDataGrid with a HierarchicalData as DataProvider.
Add my own itemEditor for the @value field in the DataProvider.
All works fine, if no value is set the background is set to red and the value to n/a
but the replacement of the…

user3112198
- 3
- 1
0
votes
1 answer
Datagrid returns a null value, can I replace this?
Hi I have an Advanced Datagrid in flex and on occasions the query that populates this graph will return an empty cell value. when this happens the Datagrid displays "NaN". is there anyway that if my query doesn't return anything the Datagrid cell…

kris
- 90
- 1
- 1
- 12
0
votes
1 answer
flex advanced datagrid single column
i was working on Advanced Data-Grid i was set horizontal scroll policy into on and declared multiple columns so that i can see the horizontal scroll bar but i cant see the scroollbar for the particular column if the data is too large the text can be…

user958250
- 1
- 1
0
votes
1 answer
Setting includeIn for multiple AdvancedDataGridColumns has the unexpected behavior
The problem I'm facing is that I have multiple columns using includeIn or excludeFrom properties set and the result is that the expected behavior is observed only for the first column for which one of these properties is set.
Here is the simplified…

ILAPE
- 47
- 1
- 5
0
votes
1 answer
Filtering in flex AdvancedDataGrid using input text
I have a advancedDatagrid with column headers having input text boxes for filtering.The column is filtered according to input text when I use characters as data inside that column.But when I use numbers in the column field,filtering does not…

Anupama
- 31
- 4