Guest User

Untitled

a guest
Feb 18th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. callback = JS("
  2. /* code for columns on hover */
  3. table.on('mouseenter', 'td', function() {
  4. var row=table.cell(this).index().row;
  5. var col=table.cell(this).index().columnVisible;
  6. var full_text = row + ','+ col
  7. $('td[row][col]).attr('title', full_text);
  8. Shiny.onInputChange('hoverIndexJS', row);
  9. });"
  10. )
Add Comment
Please, Sign In to add comment