Can you prep a small test case?  It should just work

 

________________________________

From: [email protected] [mailto:[EMAIL PROTECTED] On
Behalf Of reversible_82
Sent: Wednesday, September 19, 2007 2:20 PM
To: [email protected]
Subject: [flexcoders] Problem Locking columns in a horizontally
scrolling DataGrid control

 

Hi flexcoders, I have a large amount of data that I want to show in the
dataGrid, so I was searching on the web I found a good tutorial
<http://blog.flexexamples.com/2007/08/15/locking-columns-in-a-horizontal
ly-scrolling-datagrid-control/>   where I can lock 1 o 2 columns of my
dataGrid and scroll horizontally the next columns.

Looks like this:

<mx:DataGrid id="data" lockedColumnCount="2" horizontalScrollPolicy="on"
dataProvider="{ArCollection}" width="98%" height="230" >
<mx:columns>
<mx:DataGridColumn  dataField="field1" headerText="Field 1" />
 <mx:DataGridColumn  dataField="field2" headerText="Field 2"/>
 <mx:DataGridColumn   dataField="field3" headerText="Field 3"/>
//. . . . . so on
</mx:columns>
</mx:DataGrid>

But my problems is that I can't  see my last two columns even if I use
the  valildateNow();  method, and if I specify the width for
DataGridColumn is worst... the Question is :
 how can I apply the horizontal Scroll without affect the aparience and
visibility of my DataGrid?

I've been working with php+Weborb and Im loading my data using remote
obj.... thanks

 

Reply via email to