Re: [flexcoders] Use a Popup as itemEditor in Datagrids

2010-05-12 Thread DevSachin
Now problem has been solved. I use preventDefault in Item_Edit_Begin event after closing the popup. but it prevent it on same condition as in ITEM_EDIT_BEGINNING. it works fine now Thanks Sachin Alex Harui wrote: > > You may not be able to prevent another edit session from ITEM_EDIT_END, > but

Re: [flexcoders] Use a Popup as itemEditor in Datagrids

2010-05-11 Thread Alex Harui
You may not be able to prevent another edit session from ITEM_EDIT_END, but there should be an ITEM_EDIT_BEGINNING right after that you can use to cancel the editing of that renderer. On 5/11/10 4:51 AM, "DevSachin" wrote: Hi Alex, Thanks for Quick reply. Yes, it is not readonly but ed

Re: [flexcoders] Use a Popup as itemEditor in Datagrids

2010-05-11 Thread DevSachin
Hi Alex, Thanks for Quick reply. Yes, it is not readonly but editedItemRenderer is readonly. Now, My 50% problem is solved but 50% is still remaining. After closing popup and returning focus to grid, cell is opened in edit mode. I want this cell in renderer mode. How should I dispatch itemEditEnd

Re: [flexcoders] Use a Popup as itemEditor in Datagrids

2010-05-10 Thread Alex Harui
EditedItemPosition should be read/write. On 5/10/10 2:44 AM, "DevSachin" wrote: Hi Alex, I studied your example at http://blogs.adobe.com/aharui/2008/08/datagrid_with_popup_editor.html I have created "editing cell with popup editor with ADG " and also implement cell edit in double click

RE: Re: [flexcoders] Use a Popup as itemEditor in Datagrids

2010-05-10 Thread DevSachin
Hi Alex, I studied your example at http://blogs.adobe.com/aharui/2008/08/datagrid_with_popup_editor.html I have created "editing cell with popup editor with ADG " and also implement cell edit in double click instead of single click. I have written itemeditBeginning handler and written a condition

[flexcoders] Use a Popup as itemEditor in Datagrids

2006-10-30 Thread fritzdimmel
Hi! I'm searching for a solution, to use e.g. a popup-window as itemEditor in a flex datagrid. Using a Textinput, NumericStepper, Checkbox, ... is quite easy, but I want to have a little "bigger" (in size) component. Now I have the problem that, when I use a custom Panel component as itemEditor, th