Re: [flexcoders] Re: datagrid error w/2.01

2007-01-12 Thread Tom Chiverton
On Thursday 11 January 2007 15:16, bsdensmore wrote:
 I didn't submit it as a bug but maybe it should be?

Def. ! If you have a simple test case so much the better.

-- 
Tom Chiverton
Helping to paradigmatically innovate seamless products



This email is sent for and on behalf of Halliwells LLP.

Halliwells LLP is a limited liability partnership registered in England and 
Wales under registered number OC307980 whose registered office address is at St 
James's Court Brown Street Manchester M2 2JF.  A list of members is available 
for inspection at the registered office. Any reference to a partner in relation 
to Halliwells LLP means a member of Halliwells LLP. Regulated by the Law 
Society.

CONFIDENTIALITY

This email is intended only for the use of the addressee named above and may be 
confidential or legally privileged.  If you are not the addressee you must not 
read it and must not use any information contained in nor copy it nor inform 
any person other than Halliwells LLP or the addressee of its existence or 
contents.  If you have received this email in error please delete it and notify 
Halliwells LLP IT Department on 0870 365 8008.

For more information about Halliwells LLP visit www.halliwells.com.



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

* To visit your group on the web, go to:
http://groups.yahoo.com/group/flexcoders/

* Your email settings:
Individual Email | Traditional

* To change settings online go to:
http://groups.yahoo.com/group/flexcoders/join
(Yahoo! ID required)

* To change settings via email:
mailto:[EMAIL PROTECTED] 
mailto:[EMAIL PROTECTED]

* To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]

* Your use of Yahoo! Groups is subject to:
http://docs.yahoo.com/info/terms/
 


[flexcoders] Re: datagrid error w/2.01

2007-01-11 Thread bsdensmore
I was having the same issue as well. I think it had to do with some of
my columns showing up when they were set to be hidden. The error
seemed to happen when I would edit a column in the grid while those
hidden columns were showing up.

I ended up going back to 2.0 since I didn't get those errors at all.
After going back to 2.0 I haven't had the issue once. I think for now
you are better off going back to 2.0.

I didn't submit it as a bug but maybe it should be?

Ben

--- In flexcoders@yahoogroups.com, Paul Hastings [EMAIL PROTECTED]
wrote:

 an app started failing after w recompiled w/2.01. it started throwing:
 
 TypeError: Error #1010: A term is undefined and has no properties.
 at
mx.controls::DataGrid/mx.controls:DataGrid::mouseUpHandler()[C:\dev\flex_201_gmc\sdk\frameworks\mx\controls\DataGrid.as:4220]
 
 errors on a grid defined:
 mx:DataGrid  id=groupsGrid x=58.5 y=49 width=160 height=144
 dragEnabled=false editable=true dropEnabled=false
 dragMoveEnabled=false allowMultipleSelection=false
 selectedIndex=-1 click=getGroupedLayers();
 
 it appears to be the editable bit, turning it off gets rid of the
 error. this worked fine in 2.0  i can't see anything in the release
 notes, etc. about this.
 
 any ideas?
 
 thanks.





Re: [flexcoders] Re: datagrid error w/2.01

2007-01-11 Thread Paul Hastings
On 1/11/07, bsdensmore [EMAIL PROTECTED] wrote:
 I was having the same issue as well. I think it had to do with some of
 my columns showing up when they were set to be hidden. The error

i do have a bunch of columns hidden in that grid. i'm not actually
using them anyway, i'll try returning just the one column the app
actually uses.

 I ended up going back to 2.0 since I didn't get those errors at all.
 After going back to 2.0 I haven't had the issue once. I think for now
 you are better off going back to 2.0.

rather not, 2.01 fixes a nasty drag  drop w/an image bug that we really need.

 I didn't submit it as a bug but maybe it should be?

well that makes two of us, so i guess yeah submit a bug.


Re: [flexcoders] Re: datagrid error w/2.01

2007-01-11 Thread Paul Hastings
 i do have a bunch of columns hidden in that grid. i'm not actually
 using them anyway, i'll try returning just the one column the app
 actually uses.

no joy. seems to be the editable property. rats.

bug.


Re: [flexcoders] Re: datagrid error w/2.01

2007-01-11 Thread Paul Hastings
  I ended up going back to 2.0 since I didn't get those errors at all.
  After going back to 2.0 I haven't had the issue once. I think for now
  you are better off going back to 2.0.

seem to have found a workaround for our case, the first column in the
DataGrid was hidden, moving the visible column into first place in the
columns definition seems to have fixed it. but still looks like a bug.