Announcement

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

    isc.Canvas.HAND = 'hand'

    Hi,

    isc.Canvas.HAND is still set to 'hand' which worked only with IE 5.5 and below.
    Please change it to 'pointer' to support modern browsers and IE 6+.

    Best regards,
    Janusz

    #2
    For newer browsers, the Framework converts isc.Canvas.HAND to isc.Canvas.POINTER when applying a cursor value. This is preferable to having isc.Canvas.HAND's definition renamed to something counter-intuitive or have to change dynamically. Are you seeing an actual problem?
    Last edited by Isomorphic; 18 Sep 2017, 17:12.

    Comment


      #3
      Yes, for example on current Chrome on Mac Os with every skin as setting cursor to isc.Canvas.HAND is hardcoded for listGrid's removeField and few other places in ISC_Grids.js like downloadIcon or headerButton.
      As you claim to support IE6+ you can really drop HAND at all as IE6 started to support 'pointer' value for cursor and in Canvas._applyCursor you even check for IE9+.
      https://quirksmode.org/css/user-inte...rsor.html#note

      BTW The proper cursor for resizing fields in ListGrid should be col-resize.

      Best regards,
      Janusz
      Last edited by janusz; 18 Sep 2017, 23:29.

      Comment

      Working...
      X