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 >





--
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/
 

Reply via email to