Uploaded image for project: 'Apache Flex'
  1. Apache Flex
  2. FLEX-24064

Hand cursor not showing in mx:List over the labels

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Open
    • Major
    • Resolution: Unresolved
    • Adobe Flex SDK 3.5 (Release)
    • None
    • mx: List
    • 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:"1help", label:"First" }

      ,

      {icon:"1search", label:"Second"}

      ,

      {icon:"1sphere", label:"Third" }

      ]);
      ]]
      >
      </mx:Script>
      <mx:List buttonMode="true" useHandCursor="true" dataProvider="{_dpIconProblem}">

      </mx:List>

      </mx:Application>

      Attachments

        Activity

          People

            Unassigned Unassigned
            adobejira Adobe JIRA
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated: