ludo / jquery-treetable

jQuery plugin to show a tree structure in a table
http://ludo.cubicphuse.nl/jquery-treetable
GNU General Public License v2.0
739 stars 278 forks source link

suggest to add method to get all functon names #207

Open abramhum opened 7 years ago

abramhum commented 7 years ago

Hi: I recently combine treetable to my project. And add function to call all the methods name, I suggest it can be improved and add in future, thanks a lot. function () { var allproperties = []; for (var m in methods) { if (typeof methods[m] == "function" && methods.hasOwnProperty(m)) { allproperties.push(m); } } return allproperties; }