[flexcoders] Re: Slow datagrid updates

2009-01-07 Thread Jason B
Sorry Don't give up I might of missed what you meant 1010? What the heck is that? An actionscript error has occured: TypeError: Error #1010 A term is undefined and has no properties. at line 69 At that line is where it uses setItem What is the data type of the DG dataProvider? I'm

RE: [flexcoders] Re: Slow datagrid updates

2009-01-07 Thread Tracy Spratt
(); Tracy From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Jason B Sent: Wednesday, January 07, 2009 10:31 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Slow datagrid updates Sorry Don't give up I might of missed what

[flexcoders] Re: Slow datagrid updates

2009-01-07 Thread Jason B
(); Tracy From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Jason B Sent: Wednesday, January 07, 2009 10:31 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Slow datagrid updates Sorry Don't give up I might

RE: [flexcoders] Re: Slow datagrid updates

2009-01-07 Thread Tracy Spratt
] On Behalf Of Jason B Sent: Wednesday, January 07, 2009 10:31 AM To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com Subject: [flexcoders] Re: Slow datagrid updates Sorry Don't give up I might of missed what you meant 1010? What the heck is that? An actionscript

[flexcoders] Re: Slow datagrid updates

2009-01-07 Thread Jason B
I want to say thanks again for your help all is working Do you have a recommended Flex 3 book? --- In flexcoders@yahoogroups.com, Tracy Spratt tspr...@... wrote: It is a letter case error. Check the spelling on that line. Tracy

RE: [flexcoders] Re: Slow datagrid updates

2009-01-07 Thread Tracy Spratt
] On Behalf Of Jason B Sent: Wednesday, January 07, 2009 3:14 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Slow datagrid updates I want to say thanks again for your help all is working Do you have a recommended Flex 3 book? --- In flexcoders@yahoogroups.com mailto:flexcoders

[flexcoders] Re: Slow datagrid updates

2009-01-06 Thread Jason B
No using httpservice throws an error but your example with an array is working, how can i get this to work with httpservice? --- In flexcoders@yahoogroups.com, Tracy Spratt tspr...@... wrote: So you have everything working as you wish now? Tracy

[flexcoders] Re: Slow datagrid updates

2009-01-06 Thread oneworld95
What does the error say? -Alex --- In flexcoders@yahoogroups.com, Jason B nos...@... wrote: No using httpservice throws an error but your example with an array is working, how can i get this to work with httpservice? --- In flexcoders@yahoogroups.com, Tracy Spratt tspratt@ wrote:

RE: [flexcoders] Re: Slow datagrid updates

2009-01-06 Thread Tracy Spratt
Then answer the questions in my previous post. Tracy From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Jason B Sent: Tuesday, January 06, 2009 9:49 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Slow datagrid

[flexcoders] Re: Slow datagrid updates

2009-01-06 Thread Jason B
previous post. Tracy From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Jason B Sent: Tuesday, January 06, 2009 9:49 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Slow datagrid updates No using

RE: [flexcoders] Re: Slow datagrid updates

2009-01-06 Thread Tracy Spratt
: Tuesday, January 06, 2009 2:17 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Slow datagrid updates var oSelectedItem:Object = mccert_refund_grid.selectedItem; oSelectedItem.CERTPRESENT = NOT PRESENT; var iIndex:int = mccert_refund_grid.selectedIndex

[flexcoders] Re: Slow datagrid updates not commiting right away

2009-01-05 Thread Jason B
I was looking into the commit properties to see if this would help but it seems that the datagrid has its own timer to update the commit? anyway to force this --- In flexcoders@yahoogroups.com, Jason B nos...@... wrote: I'm using a datagrid with httpservice then allowing the user to click on

[flexcoders] Re: Slow datagrid updates

2009-01-05 Thread Jason B
Heres my example code on the issues im having excuse the pasting mess :( ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006/mxml; layout=absolute backgroundColor=#FF mx:Script ![CDATA[

[flexcoders] Re: Slow datagrid updates

2009-01-05 Thread Jason B
Thanks for your reply Tracy, no i currently am not using renders in the grid just a simple two column grid which has a value changed upon button click and I'm not using Vbox just absolute layout. the reason i dont care about undo is that the user can change the value back by just clicking the

Re: [flexcoders] Re: Slow datagrid updates

2009-01-05 Thread Jon Bradley
Do you have a label component in one of the grid cells that has a width set to 100%, rather than an explicit size? And, if so, do you have that label set to truncate? If you do, that can easily cause slow redraw in a data grid. I've had it happen numerous times. Solution is to set label to

RE: [flexcoders] Re: Slow datagrid updates

2009-01-05 Thread Tracy Spratt
] On Behalf Of Jason B Sent: Monday, January 05, 2009 1:52 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Slow datagrid updates Heres my example code on the issues im having excuse the pasting mess :( ?xml version=1.0 encoding=utf-8? mx:Application xmlns:mx=http://www.adobe.com/2006

[flexcoders] Re: Slow datagrid updates

2009-01-05 Thread Jason B
Thanks To show the example i used an Array collection but in reality im using httpservice populating the grid. So would setItemAt() still work your code works perfect for Array example but i get an error on setting the httpservice dataprovider

RE: [flexcoders] Re: Slow datagrid updates

2009-01-05 Thread Tracy Spratt
@yahoogroups.com Subject: [flexcoders] Re: Slow datagrid updates Thanks To show the example i used an Array collection but in reality im using httpservice populating the grid. So would setItemAt() still work your code works perfect for Array example but i get an error on setting

[flexcoders] Re: Slow datagrid updates

2009-01-05 Thread Jason B
, January 05, 2009 4:39 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Slow datagrid updates Thanks To show the example i used an Array collection but in reality im using httpservice populating the grid. So would setItemAt() still work your code works perfect for Array

RE: [flexcoders] Re: Slow datagrid updates

2009-01-05 Thread Tracy Spratt
[mailto:flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com ] On Behalf Of Jason B Sent: Monday, January 05, 2009 4:39 PM To: flexcoders@yahoogroups.com mailto:flexcoders%40yahoogroups.com Subject: [flexcoders] Re: Slow datagrid updates Thanks To show the example i used an Array