39 lines
916 B
PHTML
Raw Normal View History

<style>
.jstree-default a.jstree-search { color: red; }
</style>
<div>
<input id="text" type="text" value="">
<input id="search" type="button" value="Recherche">
<input id="clear_search" type="button" value="Initialiser">
</div>
<div id="groups" class="jstree jstree-default" style="overflow:auto;"></div>
2012-11-19 12:00:06 +00:00
<script src="/libs/jstree/jstree.min.js"></script>
<script>
2012-11-19 12:00:06 +00:00
$("#groups").jstree({
2012-09-13 14:56:02 +00:00
"core" : {
2012-11-19 12:00:06 +00:00
"html_titles" : true,
},
"plugins" : ["themes", "json_data", "search"],
2012-11-19 12:00:06 +00:00
"json_data" : {
"data" : [<?=$this->data?>],
2012-09-13 14:56:02 +00:00
},
"search" : {
"show_only_matches" : true,
},
"themes" : {
"theme" : "default",
"url" : "/libs/jstree/themes/default/style.css",
"dots" : true,
2012-11-19 12:00:06 +00:00
"icons" : false,
}
});
$('#clear_search').on('click', function() {
$("#text").val('');
2012-11-19 12:00:06 +00:00
$("#groups").jstree("clear_search");
});
$('#search').on('click', function(){
2012-11-19 12:00:06 +00:00
$("#groups").jstree("search", $("#text").val());
});
</script>