advanceddatagrid

Flex AdvancedDataGrid slow on performance while being resized

I have a AdvancedDataGrid which is placed inside a resizable container (custom panel) and fixed at 100% width and height. Datagrid has about 100 rows and 15 columns. When I try to resize the container datagrid kinda freezes. I understand that while resizing the whole redraw process is being held in my datagrid but are there any ways of o...

Detect if Flex AdvancedDataGrid itemClick is actually a drag

Is there any way to detect if AdvancedDataGrid itemClick event is actually caused by the user dragging? I'd like to take action on click, but ignore drag. ...

Can i make a pivot like application using Advanced Datagrid?

I want to capture the header click event and on click , i want to split the columns ,by adding the AdvancedDatgridColumnGroup dynamicaly at each level.Is it feasible? Atleast help me with capturing the header click event.Please do not suggest OLAP .I want to explore the advanced datagrid option more. <mx:AdvancedDataGrid x="6" y="4" id=...

AdvancedDataGrid Problem (Bug?) -- Disclosure Icons in Wrong Column. (Hierarchical data, Flex 3.5)

Hi Gang, I've run into a bit of a funny one and thought it was worth posting: I'm using an Advanced Data Grid in a case where I've got to set the data provider at runtime using hierarchical data. The adobe docs don't really cover this kind of thing (at least not at the level I could dig to). Has anyone run into this before? The only...

dynamically change ComboBox in advancedatagrid - Flex

All, I am trying hard to get this simple thing done. When i change the header combobox, all the combobox in that group should be updated with the same value as that of selected header combo box please let me know any quick solution for this ... ...

AdvancedDataGridEvent - Why do certain properties of the event come back null?

Hi gang, Yet another woe with the AdvancedDataGrid - this time, with the AdvancedDataGridEvent. It seems that when listening to the ITEM_EDIT_END event, several of the event properties are returned null. I've been getting null for event.column, event.item, etc. Has anyone experienced this before? If so, did you find a way to resolve...

Export Grouped AdvancedDataGrid as CSV text

I'm trying to export an AdvancedDataGrid to CSV. This is easy enough for non-hierarchical data, but when using a HierarchicalCollectionView to show treed data it gets trickier. Any suggestions on how to access each of the cells just as they appear on screen when all of the nodes are expanded? ...

Flex Spark ComboBox in an MX AdvancedDataGrid

I would like to use a combobox as the itemEditor for one of the columns of an AdvancedDataGrid. I looked around and decided to use Spark ComboBox components - they're slick and seem to natively support a lot of neat stuff including auto-completing strings when types in the textInput. After some tinkering I managed to add a spark ComboBox...

Flex 4 How do I access a specific cell by index?

I would like to edit a cell by the row and column indexes so essentially do the following: advDataGrid[2][3] = "Dogs" so that I am setting the data grid row 2 and column 3 to Dogs. I cannot for the life of me figure out how to do this! Side note: I need this because I am trying to allow the user to copy a section of an excel file to ...

Flex AdvancedDataGrid multiple cell selection highlight not fully clearing

I've two problems, the second of which is only an issue because it's a possible way to fix the first! I'm developing a Flex 4.1 application, using a Spark theme: I can't change these; Halo isn't an option. It's providing the facility to fill multiple-selected cells of an AdvancedDataGrid with a single character, from a single keypress....

AdvancedDataGridItemRenderer systemManager property is NULL

I have an AdvancedDataGrid. Occasionally, when I roll over the cells immediately after changing the dataProvider, I get a null pointer. The null pointer is caused by the systemManager property of the item renderer (AdvancedDataGridItemRenderer) being null so... ToolTipManagerImpl.createTip() is setting sm to null on line 831 line 831 l...

click on AdvancedDataGrid cell and change its color

simple (?) question: what's the easiest way to programmatically change the style of an ADG cell most recently clicked by the user? Important note: I'm assuming cells not to editable and the selection mode to be singleRow, i.e. the specific cell needs to render differently from the standard highlight that comes with being part of the sele...

Flex AdvancedDatagrid populating with groupingCollection based on xml

Hello everybody, I'm currently trying to populate an flex 3 AdvancedDatagrid with xml received from a HTTPService with id="produktMatrix_data". The layout is as follows: http://pastebin.com/NqFqgj86 The result should look like: The further rows like KID, M.., etc. will be populated by other sources, be hardcoded, or by user input and a...

Flex execution timeout in AdvancedDataGrid

Hi, I've a problem, I'm using an AdvancedDataGrid . It loads about 3000 records with about 20 columns. I constantly get Flex execution timeout because the grid executes a lot inside LayoutManager. How can I make it asyncronousely or faster at all? ...