sydcanem / bootstrap-contextmenu

Context menu plugin for Twitter's Bootstrap framework
http://sydcanem.com/bootstrap-contextmenu/
645 stars 193 forks source link

Get row click ID #79

Closed mynukeviet closed 9 years ago

mynukeviet commented 9 years ago

Hello.

<table>
     <tr id="row_0">
         <td>a</td>
         <td>b</td>
     </tr>
     <tr id="row_1">
         <td>c</td>
         <td>d</td>
     </tr>
</table>

I want get id value this row right click in table. Please help me. Thank!

tosakarin commented 9 years ago

before: function(e,context) { // execute code before context menu if shown var selected_dom=$(e.target).parent().val(); return true; },

mynukeviet commented 9 years ago

:D. hi. Thank you. @tosakarin