Can I check if jsTree serach yields some results?

for example, can I do something like that:

var searchResult = $('#myTree').jstree('search', 'keyword');
if(searchResult.haveResults){
   Do something...
};
link|improve this question

60% accept rate
1  
Finally I found some solution: var searchResult = $('#myTree').jstree('search', 'keyword'); if($(searchResult).find('.jstree-search').length == 0){ Do something... }; .jstree-search is the css class which stick to results nodes. Yair – Yair Nevet Oct 5 '11 at 16:42
feedback

1 Answer

up vote 2 down vote accepted

Finally I found some solution:

var searchResult = $('#myTree').jstree('search', 'keyword');
if ($(searchResult).find('.jstree-search').length == 0) {
   Do something...
};

.jstree-search is the css class which stick to results nodes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.