This topic contains 3 replies, has 2 voices, and was last updated by  Dimitar 11 years ago.

Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
  • button : cursor style as hand #32916

    mallepaddi
    Participant

    Hi

    How to place “hand” as cursor style for button.

    Following code doesn;t work.

    $(“#confirmButton”).jqxButton({ width: ’75’, height :’25’, theme: theme , roundedCorners: ‘all’});

    Thanks

    button : cursor style as hand #32925

    Dimitar
    Participant

    Hello mallepaddi

    The code you posted is used to initialize the jqxButton. To change the cursor, please add the following style to your page:

    <style type="text/css">
    #confirmButton
    {
    cursor: pointer;
    }
    </style>

    Best Regards,
    Dimitar

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

    button : cursor style as hand #32939

    mallepaddi
    Participant

    Hi

    Not sure, if it’s a bug.

    It works as expected when we have custom styling as above,

    But not able to see hand cursor once we disabled and then enabled button.

    $(‘#confirmButton’).jqxButton({disabled: true });

    $(‘#confirmButton’).jqxButton({disabled: false});

    Thanks

    button : cursor style as hand #33014

    Dimitar
    Participant

    Hi mallepaddi,

    Please modify your style as follows:

    <style type="text/css">
    #confirmButton
    {
    cursor: pointer !important;
    }
    </style>

    Best Regards,
    Dimitar

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

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

You must be logged in to reply to this topic.