RE: [flexcoders] Re: how can i stop my date-time timezone data from b eing adjusted

2005-05-22 Thread Matt Chotin
I think you might want to do the rendering trick and keep the adjustments in account because if you change the actual timezone and send back new data you’ll have adjusted it so it would be wrong in the database.  Otherwise you should simply take a result handler and iterate through all th

RE: [flexcoders] Re: how can i stop my date-time timezone data from b eing adjusted

2005-05-20 Thread Tracy Spratt
Don't use binding. Process the result data in your result handler, reformatting as needed. Then assign the dataProvider. Tracy -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of bhaq1972 Sent: Friday, May 20, 2005 11:13 AM To: flexcoders@yahoogro

Re: [flexcoders] Re: how can i stop my date-time timezone data from b eing adjusted

2005-05-20 Thread Manish Jethani
On 5/20/05, bhaq1972 <[EMAIL PROTECTED]> wrote: >Do you have any recommendation how i would > apply this code before binding to a datagrid. My result handlers > after an async call usually look like this > > function resultHandler(result){ > datagrid1.dataProvider = result; > } Use a DataGridC