You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to slic...@googlegroups.com
Is there a way, similar to getActiveCellPosition() for an ordinary cell, to get the position of the header cell when hovering on it?
Thanks,
Gian
Michael Leibman
unread,
Oct 15, 2012, 4:39:40 PM10/15/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to slic...@googlegroups.com
grid.onHeaderMouseEnter.subscribe(function(e, args) } // args.column has the column definition // grid.getColumnIndex(args.column.id) has the index });
Gianluca Bisceglie
unread,
Oct 16, 2012, 2:21:34 AM10/16/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to slic...@googlegroups.com
Thanks Michael.
I can see the width of the header cell among the args.column attributes.
How would you suggest to get the left and top coords? Would like to overlay icons on hover as I successfully did on ordinary cells.
Thanks,
Gian
Michael Leibman
unread,
Oct 16, 2012, 2:37:19 PM10/16/12
Reply to author
Sign in to reply to author
Forward
Sign in to forward
Delete
You do not have permission to delete messages in this group
Copy link
Report message
Show original message
Either email addresses are anonymous for this group or you need the view member email addresses permission to view the original message
to slic...@googlegroups.com
grid.getHeaderRowColumn(id) gives you the DOM element which you can query for position further.