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

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

There is a newer version: 2024.10.0
Show newest version
// 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 - 2024 Weber Informatics LLC | Privacy Policy