All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.nasdanika.html.jstree.impl.bindSearch.js Maven / Gradle / Ivy

// Tokens: searchInputSelector, timer, treeSelector
$('{{searchInputSelector}}').keyup(function () {
    if ({{timer}}) { 
		clearTimeout({{timer}}); 
	}
    {{timer}} = setTimeout(function () {
      var v = $('{{searchInputSelector}}').val();
      $('{{treeSelector}}').jstree(true).search(v);
    }, 250);
  });




© 2015 - 2025 Weber Informatics LLC | Privacy Policy