I have installed and trying to customize Jquery File Tree so that, on click of folder name, the folder name and path are returned to the calling function. Currently it only expands and collapses folders, and returns the file name on click of file.
So I need to return the folder too and cannot see where that is triggered.
I am using the php connector. Below link is where I downloaded the sample code: http://abeautifulsite.net/blog/2008/03/jquery-file-tree/
thanks, Ed
It worked pretty well, I just changed the last function to "dire", like it was it the code between line 65 and 66
Not sure if there is an "API" way to do it. But if you look at the source code (Line 64-81)
Looks like you can call another function inside the
hasClass('directory')
if clause and it will work.So you could:
Change Line 36 to be
Between 65 and 66 add
If you want to have more control/flexibility/information, you can do
dire($(this));
, and it will send the jQuery object instead of just therel
attribute.Example:
I have not tested it, you might need to change a couple of things around.