Is there mouseover event for datatable rows

Is there mouseover event for datatable rows

vlutskervlutsker Posts: 14Questions: 0Answers: 0
edited June 2010 in General
Hi Allen,

Is there mouseover event available for datatable to highlight rows with different color?

Thank you, Vlad.

Replies

  • zadrozadro Posts: 12Questions: 0Answers: 0
    Some simple CSS:

    [code]
    .dataTables_wrapper tbody tr:hover {
    background-color: #FFFF00!important;
    cursor: pointer;
    * cursor: hand;
    }
    [/code]
  • vlutskervlutsker Posts: 14Questions: 0Answers: 0
    Thank you Zadro.
This discussion has been closed.