[flexcoders] Re: Make datagrid into spreadsheet

2007-06-05 Thread powertool786
How much like a spreadsheet do you want it to be? If you just want every cell to be editable, does setting the 'editable' attribute on the DataGridColumn to 'true' not do the trick for you? If you wish to implement formulas and automatic 'trickle-on' updating of cells references in formulas

[flexcoders] Re: Make datagrid into spreadsheet

2007-06-05 Thread powertool786
Wow, that post looks quite unreadable. Does this forum allow any code of literal (or fixed width) formating ? -David

RE: [flexcoders] Re: Make datagrid into spreadsheet

2007-06-05 Thread Mark Ingram
: [flexcoders] Re: Make datagrid into spreadsheet How much like a spreadsheet do you want it to be? If you just want every cell to be editable, does setting the 'editable' attribute on the DataGridColumn to 'true' not do the trick for you? If you wish to implement formulas and automatic 'trickle

[flexcoders] Re: Make datagrid into spreadsheet

2007-06-05 Thread powertool786
I think you just need to set editable to true on the DataGrid and on the DataGridColumn's. --- In flexcoders@yahoogroups.com, Mark Ingram [EMAIL PROTECTED] wrote: Hi, thanks for the response. I meant like a spreadsheet as in I can type into any cell I like. If you just imagine I have a data

RE: [flexcoders] Re: Make datagrid into spreadsheet

2007-06-05 Thread Mark Ingram
@yahoogroups.com Subject: [flexcoders] Re: Make datagrid into spreadsheet I think you just need to set editable to true on the DataGrid and on the DataGridColumn's. --- In flexcoders@yahoogroups.com, Mark Ingram [EMAIL PROTECTED] wrote: Hi, thanks for the response. I meant like a spreadsheet as in I

[flexcoders] Re: Make datagrid into spreadsheet

2007-06-05 Thread powertool786
Well, if you think about it, that makes sense. Where is the empty row when the rows overflow the height of the DataGrid container? Either add and maintain a pseudo item in the dataProvider (which appends a new Object when edited), or add some button/widget near your DataGrid which appends an

RE: [flexcoders] Re: Make datagrid into spreadsheet

2007-06-05 Thread Mark Ingram
Of powertool786 Sent: 05 June 2007 16:46 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Make datagrid into spreadsheet Well, if you think about it, that makes sense. Where is the empty row when the rows overflow the height of the DataGrid container? Either add and maintain a pseudo item