Odd Datagrid issue after 2.0.1 upgrade
i upgraded 2.0.1 on friday windows. since upgrading, having odd issue datagrid.
i have couple of hidden columns in datagrid in 2.0 worked fine. ever since upgraded , re-compiled in 2.0.1 hidden columns seem toggle state.
if click on 1 row displays fine, can move next row , click on , 2 hidden columns display.
has else run this?
thanks,
ben
i have couple of hidden columns in datagrid in 2.0 worked fine. ever since upgraded , re-compiled in 2.0.1 hidden columns seem toggle state.
if click on 1 row displays fine, can move next row , click on , 2 hidden columns display.
has else run this?
thanks,
ben
i can't reproduce problem that. here tried:
1. compiled following program:
<?xml version="1.0" encoding="utf-8"?>
<mx:application xmlns:mx=" http://www.adobe.com/2006/mxml" >
<mx:xml id="mydata" xmlns="">
<root>
<obj a="click here" b="b1" c="c1" />
<obj a="then click here" b="2" c="2" />
<obj a="3" b="3" c="3" />
<obj a="4" b="4" c="4" />
<obj a="5" b="5" c="5" />
<obj a="6" b="6" c="6" />
</root>
</mx:xml>
<mx:datagrid x="10" y="10" dataprovider="{mydata.obj}">
<mx:columns>
<mx:datagridcolumn headertext="column 1" datafield="@a"/>
<mx:datagridcolumn headertext="column 2" datafield="@b" visible="false"/>
<mx:datagridcolumn headertext="column 3" datafield="@c"/>
</mx:columns>
</mx:datagrid>
</mx:application>
2. ran
3. clicked says "click here"
4. clicked says "then click here"
as expected, hidden row remained hidden.
1. compiled following program:
<?xml version="1.0" encoding="utf-8"?>
<mx:application xmlns:mx=" http://www.adobe.com/2006/mxml" >
<mx:xml id="mydata" xmlns="">
<root>
<obj a="click here" b="b1" c="c1" />
<obj a="then click here" b="2" c="2" />
<obj a="3" b="3" c="3" />
<obj a="4" b="4" c="4" />
<obj a="5" b="5" c="5" />
<obj a="6" b="6" c="6" />
</root>
</mx:xml>
<mx:datagrid x="10" y="10" dataprovider="{mydata.obj}">
<mx:columns>
<mx:datagridcolumn headertext="column 1" datafield="@a"/>
<mx:datagridcolumn headertext="column 2" datafield="@b" visible="false"/>
<mx:datagridcolumn headertext="column 3" datafield="@c"/>
</mx:columns>
</mx:datagrid>
</mx:application>
2. ran
3. clicked says "click here"
4. clicked says "then click here"
as expected, hidden row remained hidden.
More discussions in Flex (Read Only)
adobe
Comments
Post a Comment