jQWidgets Forums

jQuery UI Widgets Forums Scheduler Change cursor to image over cells

This topic contains 1 reply, has 2 voices, and was last updated by  Dimitar 8 years, 11 months ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Change cursor to image over cells #85538

    EricK
    Participant

    Hello all,
    Wanted to change the cursor when mouse is over the appointment cells to an image.
    css allows me to use the common cursor.(move, copy etc).

    .jqx-rc-all, .jqx-cell {
    cursor: url(‘image/book.png’), pointer;
    }

    This does change the cursor on the header part of the scheduler, but defaults back to an arrow when over the cells.
    How do I override the cursor over the cells?

    Thanks in advance.
    Eric

    Change cursor to image over cells #85546

    Dimitar
    Participant

    Hello Eric,

    By default, the cursor over jqxScheduler appointments is “pointer”. If you wish to change it, apply your settings to the class jqx-scheduler-appointment-content. If you wish all scheduler cells to have a “pointer” cursor, you can use the following code:

    .jqx-scheduler .jqx-cell {
        cursor: pointer;
    }

    Best Regards,
    Dimitar

    jQWidgets team
    http://www.jqwidgets.com/

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.