Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    #16
    As noted earlier, be sure to call bringToFront() or you may be occluded by other elements.

    Comment


      #17
      Already doing that. As seen in the attached code, last line of the init() method there is the following: drawerButton.bringToFront();

      The button is visible, it just does not respond to mouse events for FireFox. For IE8 it is visible and responds to mouse events.

      My problem is with FireFox not responding to the mouse events.

      Thanks

      Comment


        #18
        This is a timing issue - you're calling bringToFront() on the button at a moment when the TabBar has not been created. When created, it gets a higher zIndex.

        Instead, you could postpone your bringToFront() call until draw.

        Comment


          #19
          That did it - many thanks for your help!

          Comment


            #20
            i tried

            Hello guys

            i tried but it did not worked i called bringToFront(); method but nothing changed
            please help me

            Comment


              #21
              you need to call 'bringToFront()' in the onDraw event as indicated below

              Comment

              Working...
              X