How to make the cursor to pointer in select entries per page?

How to make the cursor to pointer in select entries per page?

renier-sumaguirenier-sumagui Posts: 1Questions: 1Answers: 0
edited February 4 in Free community support

Hello, is there a way to make the cursor to pointer when hovering over the options in the select entries per page selection? Thank you.
Edit: I am using angular 14 and including this in the options does not seem to work:
buttons: ["pageLength"]

Answers

  • allanallan Posts: 62,990Questions: 1Answers: 10,367 Site admin

    I don't know that there is - but that isn't a DataTables limitation, but rather a browser / OS decision.

    Normally in CSS to change the cursor you would do something like:

    select {
      cursor: pointer;
    }
    option {
      cursor: pointer;
    }
    

    The select one works for me in Firefox, but not the option.

    Allan

Sign In or Register to comment.