Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
1answer
3k views

Commit new value from itemEditor before itemEditEnd event

I have a DataGrid, with itemEditor as NumericStepper in a few columns. When a value in the DataGrid is edited, I would like to update several values displayed on the screen, and so want to call a ...
2
votes
1answer
159 views

Flex: ItemEditor losing focus!

Here's an image of what my problem is: I am using a combo-box as a Datagrid ItemEditor (Not just Renderer, my Renderer is a Label, double clicking on a cell makes the combo-box visible, as is the case ...
2
votes
2answers
3k views

How can I trigger an itemEditEnd Event in a Flex List when the CheckBox is checked/unchecked?

I have a List component that has drop-in CheckBox itemEditor that also serves as the itemRenderer. It displays each item as a simple CheckBox with a label. However, the itemEditEnd Event does not get ...
1
vote
2answers
628 views

Trigger an itemEditEnd event within the itemEditor

This might be an easy one for you DataGrid experts out there. I following an example for adding rows to a DataGrid dynamically from within a row ...
0
votes
0answers
101 views

Flex - how to create a simple inline checkbox itemeditor in a spark datagridcolumn?

Looking at the flex 4.6 (flash builder) documentation, it shows an example of creating an item editor for a data grid column, but their example is using the "mx" library. I am trying to stick to ...
0
votes
0answers
173 views

Null FocusManager in AdvancedDataGridColumn itemEditor from PopupAnchor

I'm running into an issue when trying to edit an item in an AdvancedDataGrid from within a popup. When trying to edit the item the AdvancedDataGridBaseEx:itemEditorItemEditBeginHandler internal ...
0
votes
2answers
532 views

Flex 3: Datagrid as item editor gets 'itemEditEnd' prematurely

My application has a tree with a custom item renderer, which depending on the type of data at a leaf uses different components as editors. In one case I am trying to use a datagrid so that the user ...
0
votes
1answer
352 views

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 ...
0
votes
2answers
416 views

Flex DropDownList fires focus out on scroll when used in datagrid item editor

I have a data grid with a custom item editor that displays a DropDownList component. When I click the scroll bar in the component, it is firing a focus out event on the list, which is causing ...
0
votes
0answers
366 views

Accessing TextInput.text within a TileGroup itemEditor of a datagrid?

I have a datagrid that has an itemEditor which is a TileGroup containing varying rows of TextInputs. In my MXDataGridItemRenderer, for each row in the TileGroup I am trying to retrieve the ...
0
votes
2answers
101 views

What event handler can i use to capture new values that have been changed in a flex datagrid

I have an editable grid and would like to update values based on the edited cell and i am doing this in the itemEditEndHandler such that when they finish editing a cell i update other cells that are ...
0
votes
1answer
195 views

Adobe Flex ItemEditor

I have a datagrid column as follows: <mx:DataGridColumn headerText="Description" dataField="description" editable="true" editorXOffset="2" editorYOffset="2" editorHeightOffset="20" ...
0
votes
1answer
455 views

destroy open item editor or item renderer in flex

Is it possible to destroy/close open item editor or item renderer of a datagrid in different mxml page? I heard about the functions editedItemRenderer and destroyItemEditor on Datagrid. Can I use ...
0
votes
2answers
590 views

Gettinf Property **text** not found error in DataGrid

I am using a custom itemEditor for my DataGrid. The itemEditor has a simple TextField as a component. But when ever i am clicking the cell i am getting an error as : ReferenceError: Error #1069: ...
0
votes
2answers
431 views

Flex DataGrid with variable custom itemEditor on a DataGridColumn

Is there anyway to create a custom item editor based on the dataField value? For example: <mx:DataGrid editable="true" dataProvider="{_actionArr}" id="prop"> <mx:column> ...
0
votes
3answers
755 views

flex: cant edit item in Datagrid with override set data method

I've a custom itemRenderer for my datagrid. To set the actual data I use the following method: override public function set data(side:Object):void{ ... } As soon as I use this function the cell ...
0
votes
1answer
490 views

Flex 3 custom ItemRenderer and Editor Issue

I've created a custom ItemRenderer extending UIComponent and implementing IListItemRenderer. This renderer contains a Text-Object to display the value. For editing I'm using the standard ItemEditor ...
0
votes
1answer
556 views

Flex Tree Control how to get the itemEditorInstance of a just added xml node

I have a Tree Control on which I let user add some nodes. When a node gets added I want to let the user edit the added control right away. How do I get the itemEditorInstance of a just added xml node? ...
0
votes
1answer
965 views

DataGrid - Edit the selected row when a button is clicked

I have a very simple DataGrid with 2 columns, some thing like this: <mx:DataGrid id="grid" > <mx:columns> <mx:DataGridColumn dataField="name" headerText="Name"/> ...
0
votes
1answer
152 views

how to prevent itemeditor destruction?

My custom item editor opens a titlewindow (too much stuff to show in an inline editor) which obviously steal the focus, so I get a itemeditend event and the datagrid destroy the editor at the wrong ...
0
votes
3answers
8k views

refresh / reload a datagrid in flex

I am using a datagrid. It has itemEditor components, combo boxes, etc. as aprt of columns. Ideally datagrid.invalidateList() method works to reload the datagrid with new dataProvider data. But, for ...
0
votes
3answers
2k views

How do I make an item editor in a flex list component commit it's changes?

I have a list component and I have an item editor for the items in the list. I would like to have a button that the user clicks once they are done with their changes because I am having them edit ...
0
votes
2answers
885 views

Flex:How to retrieve the pre edited value of the cell of a datagrid to an itemeditor in a flex

I wrote a custom item editor for a datagrid in flex. My question is how to retrieve the pre-edited value of the datagrid cell after the item editor initializes and also in the custom item editors ...
0
votes
2answers
2k views

Flex: Using NumericStepper as an itemEditor in a DataGrid

I am trying to make one field in a datagrid editable with a numeric stepper. My current attempts look like they are working, but the dataProvider is not actually being changed. Based on what I have ...