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

Set background color of a cell in datagrid

How to set background color of specific cells in datagrid. I tried it through item renderer. But the problem with item renderer is that until the data is not populated in datagrid background color does not work. I want the cell or set of cells to be…
Fakeer
  • 165
  • 1
  • 5
  • 17
0
votes
1 answer

Expand and Collapse in treecolumn in advancedgrid in Flex

Can anyone say how I can expand and collapse treeColumn value in advancedGrid in Flex under a particular parent. I just want to expand and collapse only the children under a particular parent node in the grid. Thanks in Advance Vishnu
0
votes
1 answer

Why is AdvancedDataGrid Width more than the Parent Container?

Here is the hierarchy of my controls:
0
votes
2 answers

AdvancedDataGrid sort number color

next to the header of an advancedDataGrid you see a number. This number stays grey no matter what i do. I Already searched 1 hour to find the solution. Very anoying because it should be so simple to change this. I hope someone could help me with…
Arno
  • 514
  • 5
  • 13
0
votes
1 answer

Flex Advanceddatagrid scrollbar width

I am using an advanceddatagrid in a Flex4.6 solution. I have two advanceddatagrids that are placed on top of each other. At the moment I've got it to work so that moving the bottom horizontal scrollbar moves the top grids scrollbar accordingly but…
Keziah
  • 1
  • 1
0
votes
1 answer

How to access to AdvancedDataGrid combobox value

I try to access AdvancedDataGrid - AdvancedDataGridColumn value? Its ComboBox and I use this code to access: '"+ myGrid_olculer.dataProvider[k].data + "' Then the result is: INSERT INTO [INN_T_OPTSIPARIS] ( GAIN) values (' [object Object]' )…
0
votes
6 answers

AdvancedDataGrid Multi-column programmatic sorting

I need to to a programmatic multi column sorting on the AdvancedDataGrid. The issue is, currently I am implementing paging on my grid. So, if I sort the data, only the perticular page is being sorted. So, I need to sort the entire list by the column…
online19
  • 125
  • 5
  • 17
0
votes
1 answer

flex3: AdvancedDataGrid with many LinkButton itemrenderers getting performance issue

I am facing loading time taking - performance issue due to many linkbuttons in the datagrid. Suppose, In my page, there are 4 pod(panel) objects, and each containing ADGrid. As of now, for some scenario, we have to make all the datagrids columns…
0
votes
1 answer

How do I programmatically move an item in a Flex 3 AdvancedDataGrid?

Is there a way to move a row in an AdvancedDataGrid in response to an external event? In this case, I'd like to have a toolbar button that moves an item or items selected in the grid either up or down. The problem as I see it is keeping the…
rtward
  • 164
  • 4
0
votes
2 answers

AS3 Datagrid multiple selection

I am working with Flash AS3 (not Flex) . I have a datagrid with "allowMultipleSelection = true"; I want get and store the selected rows in my Data Base only when the row selection is completed using a button. (I don't want use "ListEvent.ITEM_CLICK"…
Michel
  • 1
  • 1
0
votes
1 answer

Access a column field property of advanced datagrid in the header renderer

I have to access the column field property of an advance datagrid in the header renderer. Basically what i am trying to achieve is that whenever i click on a column header field then its corresponding column field can be fetched like an alert…
user1579234
  • 501
  • 5
  • 15
0
votes
2 answers

Datagrid Column header setup

I have a query that returns 2 columns from joining 2 entities as the following: var myQ = myDataContext1.Entity1.Join(myDataContext1.Entity2, a=>a.id, b=>b.id, (a, b)=> new Tuple(a.id, b.something)).ToList(); MyDatagrid.ItemSources =…
0
votes
1 answer

AdvancedDataGrid add Column by Dataprovider

I have a problem with the AdvancedDataGrid in Flex. I have a AdvancedDataGrid with a Bindable ArrayCollection as DataProvider. When I set the ArrayCollection (by Clicking on Button 1) the AdvancedDataGrid will represent 4 Columns. After that i click…
Dominic Weiser
  • 1,446
  • 1
  • 20
  • 32
0
votes
1 answer

flex4 maven compile,TypeError: Error #1007: Instantiation attempted on a non-constructor,AdvancedDataGrid

There is multiple module project, A is application, B,C,D is module. Compile successful,but when I load module B ,pop up error: TypeError: Error #1007: Instantiation attempted on a non-constructor. at…
Shawn
  • 21
  • 3
0
votes
1 answer

Dynamically change DefaultLeafIcons in AdvancedDataGrid

Overview: I have an advancedDataGrid that I am using a GroupingCollection on and I want to be able to change the individual DefaultLeafIcons (no children icon) based upon a value I get from the dataProvider. Can anyone shed some light on how this…
Chris
  • 85
  • 8