maxazan / jquery-treegrid

TreeGrid plugin for jQuery
http://maxazan.github.io/jquery-treegrid
MIT License
553 stars 222 forks source link

Table in table issue #7

Closed liuspcn closed 10 years ago

liuspcn commented 10 years ago

First, GOOD job!

pardon me for my poor english!

Extend or collapse raise ERROR:"...null" on browser console when I put the grid(table) in a table.

my way to fix: at line 54: change "$($(this).parents('tr')).treegrid('toggle');" to "$($(this).closest('tr')).treegrid('toggle');" at line 541: change "return $(this).parents('table');" to "return $(this).closest('table');"

VERSION: 0.1.8.

thinks!

maxazan commented 10 years ago

Fixed in 0.1.9 Thanks for your help