$(function(){
    $("#tree").dynatree({
//      persist: true,
      onActivate: function(dtnode) {
        $("#echoActive").text(dtnode.data.title); 
		$.get('ajax/test.php',{ 'id': dtnode.data.key},function(data){
			$('#device_table').dataTable({'AjaxSource': '/v3/device_data.json'});
					});}
	  onDeactivate: function(dtnode) {
        $("#echoActive").text("-");
      }
    });
	$('#device_table').dataTable( {
		"bProcessing": true,
		"sAjaxSource": '/v3/device_data.json',
		"sPaginationType": "two_button",
		"sDom": 'rt<"bottom"iflp<"clear">',
		"oLanguage": { 	"sLengthMenu": "Vis _MENU_ enheder pr. side",
						"sZeroRecords": "Ingen enheder fundet",
						"sInfo": "Viser _START_ til _END_ ud af _TOTAL_",
						"sInfoEmpty": "Viser 0 enheder",
						"sInfoFiltered": "(filtret fra _MAX_)",
						"sSearch": "S?
					}
	} );

  });