I've tried various combinations of property settings trying to get the expected behavior (column widths adjusting to the column contents), and nothing seems to work. Here is a simple example using the animals DS from the samples. Adding or removing the "autoFitData horizontal" setting makes no difference in the results. Is there a combination of settings that will make this work?
[CODE]
<DataSource>
<loadID>animals</loadID>
</DataSource>
<ListGrid>
<autoFitData>horizontal</autoFitData>
<dataSource>animals</dataSource>
<ID>ListGrid3</ID>
<autoFetchData>true</autoFetchData>
<autoDraw>false</autoDraw>
</ListGrid>
<VLayout>
<members><Canvas>ListGrid3</Canvas>
</members>
<ID>VLayout4</ID>
<width>100%</width>
<height>100%</height>
<overflow>hidden</overflow>
<autoDraw>true</autoDraw>
</VLayout>
[CODE]
[CODE]
<DataSource>
<loadID>animals</loadID>
</DataSource>
<ListGrid>
<autoFitData>horizontal</autoFitData>
<dataSource>animals</dataSource>
<ID>ListGrid3</ID>
<autoFetchData>true</autoFetchData>
<autoDraw>false</autoDraw>
</ListGrid>
<VLayout>
<members><Canvas>ListGrid3</Canvas>
</members>
<ID>VLayout4</ID>
<width>100%</width>
<height>100%</height>
<overflow>hidden</overflow>
<autoDraw>true</autoDraw>
</VLayout>
[CODE]
Comment