Re: [flexcoders] Advanced Data Grid with Grouped Columns

2008-11-03 Thread Tom Chiverton
On Thursday 30 Oct 2008, grg_blls wrote:
 vertical scroll, it always throws a RTE.

Guess: It's your customer editors.
As this code self-evidently won't run as-is, and you've not included the full 
text of the RTE, it's hard to help.

-- 
Tom Chiverton
Helping to dynamically e-enable sticky turn-key users





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 
Halliwells LLP, 3 Hardman Square, Spinningfields, Manchester, M3 3EB.  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 Solicitors Regulation Authority.

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 2500.

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



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Alternative FAQ location: 
https://share.acrobat.com/adc/document.do?docid=942dbdc8-e469-446f-b4cf-1e62079f6847
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.comYahoo! 
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] Advanced Data Grid with Grouped Columns

2008-10-30 Thread grg_blls
Hi all, 

using a ADG control and having set for groupedColumns. I also use 
ItemEditors set as Renderers. The mxml code snippet is attached. 

This works finw as long as I don't use the vertical scroll bar (if 
there are enough data rows in the adg to need scrolling). If I try 
vertical scroll, it always throws a RTE. 
This is not so, if I don't use groupedColumns. Then the adg and the 
application work perfectly stable. 

Any ideas? 
Thanks all 
George 

Attach Code 

mx:groupedColumns 
!-- column 0 -- 
mx:AdvancedDataGridColumn dataField=JobPlan headerText=Column 0 
id=adgC0 textAlign=center width=80 minWidth=80 
editable=false sortable=false / 
!-- column 1 -- 
mx:AdvancedDataGridColumn dataField=Doc width=61 minWidth=61 
id=adgC1 headerText=Column 1 editable=false textAlign=center 
sortable=false/ 
mx:AdvancedDataGridColumnGroup headerText=Grouped Columns  
!-- column 2 -- 
mx:AdvancedDataGridColumn  dataField=SPA width=61 minWidth=61 
id=adgC2 editable=true headerText=Start textAlign=left 
sortable=false itemEditor=NSStartP_  editorDataField=value / 
!-- column 3 -- 
mx:AdvancedDataGridColumn  dataField=EPA width=61 minWidth=61  
id=adgC3 editable=true headerText=End textAlign=left 
sortable=false itemEditor=NSEndP_ editorDataField=value  / 
/mx:AdvancedDataGridColumnGroup 
/mx:groupedColumns