Details
-
Bug
-
Status: Open
-
Major
-
Resolution: Unresolved
-
Adobe Flex SDK 3.5 (Release)
-
None
-
None
-
Affected OS(s): All OS Platforms
Affected OS(s): All OS Platforms
Browser: Internet Explorer 7.x
Language Found: English
Description
Steps to reproduce:
1. Create an MXML file.
2. Create an mx:List tag, filled with some data.
3. Set the attributes useHandCursor and buttonMode to true.
Actual Results:
When the mouse cursor is over the list's labels the cursor is an arrow.
Expected Results:
When the mouse cursor is over the list's labels the cursor should be a hand.
Workaround (if any):
Not known. I tried to set the label's useHandCursor and buttonMode to true in the Item Renderer, but it did not help.
Some code:
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
<mx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
[Bindable]
private var _dpIconProblem:ArrayCollection = new ArrayCollection([
,
,
{icon:"1sphere", label:"Third" }]);
]]
>
</mx:Script>
<mx:List buttonMode="true" useHandCursor="true" dataProvider="{_dpIconProblem}">
</mx:List>
</mx:Application>