Michal,

Did you ever find a solution to this problem? I am having the exact
same problem with a datagrid in one of my apps.

Jimmy

--- In flexcoders@yahoogroups.com, "workmichal" <[EMAIL PROTECTED]> wrote:
>
> Fellow Flexers,
> 
> I have a simple data grid with three columns. When I start scrolling
> down, datagrid items start overlapping my header. I have no idea why
> this is happening. Did any of you had similar problem, or do you have
> any suggestions on how I can approach this?
> After stripping out columns and reproducing the same bug with just
> one column containing just text, I officially am out of ideas.
> 
> Thank you,
> 
> Cheers,
> 
> Michal
> 
> Here is my DG.
> 
> <mx:DataGrid id="clipGrid" styleName="clipGrid" width="100%"
> 
> dataProvider="{this.model.mediaClips}"
> change="onDataGridSelectionChange()"
> sortableColumns="false"
> draggableColumns="false"
> resizableColumns="false"
> editable="true"
> dragEnabled="true"
> dragMoveEnabled="true"
> dropEnabled="true" rowCount="9">
> <mx:columns>
> <mx:DataGridColumn headerRenderer="myHeaderRenderer"
> itemRenderer="myItemRenderer"
> editable="false" width="35"/>
> <mx:DataGridColumn dataField="title"
> headerRenderer="titleHeaderRenderer" editable="true"
> paddingLeft="10"/>
> <mx:DataGridColumn headerText="Length"
> labelFunction="renderGridDurationLabel" editable="false" width="70"/>
> </mx:columns>
> </ mx:DataGrid >
>



Reply via email to