[flexcoders] Updating multiple columns

2010-08-13 Thread Goutham
Hi, I have a datagrid with two columns 'comments' (editable) and 'commentedOn' (non editable). I wanted to change the 'commentedOn' column which is a date value(non editable), when the 'comments' column is edited. How is it possible ? Thank you

[flexcoders] Integrating Flex app in cfm page

2010-07-07 Thread Goutham
, the scope of that is only in the swf, i can't move the popup window over the header or footer, limiting the area on the screen. Is there any setting that would make the swf standout, make the entire screen use by the swf ? Thank you, Goutham

[flexcoders] navigateToURL

2010-07-06 Thread Goutham
close the new window if we click the save/cancel button on the dialog box I can make the navigateToURL in the same window using '_self' and get around with this problem, but if we click open, it opens in the same window, which is not what I want. Thank you, Goutham

[flexcoders] Re: navigateToURL

2010-07-06 Thread Goutham
Hi, thanks for your reply. I am using flex 3, so filereference.save is not available It would be great if you can provide any example using the script to communicate with flex thanks, Goutham --- In flexcoders@yahoogroups.com, Oleg Sivokon olegsivo...@... wrote: Use FileReference instead

[flexcoders] Coloring a column

2010-06-14 Thread Goutham
'status' to be colored based on conditions and when clicked on the column, the combobox shows up (which need not be colored). Thank you, Goutham

[flexcoders] Re: Combobox in ItemEditor

2010-06-14 Thread Goutham
I have changed the combobox as a component instead of a drop in item editor and now it works fine. Thank you, Goutham --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: You're trynig to set up binding statements to various properties. What if you eliminate all of those binding

[flexcoders] Re: Combobox in ItemEditor

2010-06-11 Thread Goutham
Hi, any suggestions on this post Thank you, Goutham --- In flexcoders@yahoogroups.com, Goutham goldensu...@... wrote: Hi, the field specified by the column in dataprovider for the datagrid is same as the item in the dataprovider of the combobox heres an example dataprovider

[flexcoders] Re: Combobox in ItemEditor

2010-06-08 Thread Goutham
. error at this line in the script var status = event.currentTarget.itemEditorInstance.cbStat.selectedItem.status_type; the same code works fine, if I don't have a box around the combobox, no issues at all is there something I am missing out when using a inner components Thank you, Goutham

[flexcoders] Re: Combobox in ItemEditor

2010-06-07 Thread Goutham
= data.DataField} labelField=datafield / this shows a blank combobox when clicked on the cell. in both the cases it does give a warning unable to bind to property 'datafield' on class object any suggestion Thank you --- In flexcoders@yahoogroups.com, Goutham goldensu...@... wrote: Hi Alex

[flexcoders] DateField problem

2010-06-03 Thread Goutham
Hi I have a date stored in the database along with other details. have a datagrid that shows all the details, clicking on a row pops up a titlewindow showing all the details of that row which can be editable as in a form. the problem is, I am not able to fill the datefield from the value in

[flexcoders] Combobox in ItemEditor

2010-06-03 Thread Goutham
Hi, I have a combobox in item editor in a datagrid. the combobox is populated with a dataprovider. All this works fine until I place this combobox inside a gird working code mxml code - datagridcolumn itemeditor component combobox dataprovider={outerDocument.data}

[flexcoders] Re: DateField problem

2010-06-03 Thread Goutham
, Goutham goldensu...@... wrote: Hi I have a date stored in the database along with other details. have a datagrid that shows all the details, clicking on a row pops up a titlewindow showing all the details of that row which can be editable as in a form. the problem is, I am

[flexcoders] Re: Combobox in ItemEditor

2010-06-03 Thread Goutham
is not an IEventDispatcher) any suggestions thank you --- In flexcoders@yahoogroups.com, Alex Harui aha...@... wrote: One way is to set an id=foo on the ComboBox, then use object.data = ComboBox(Grid(event.currentTarget.itemEditorInstance).foo).text; On 6/2/10 1:00 PM, Goutham goldensu...@... wrote