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>

