Fixed problem in tree view with servername containt dot, tree not expand

Problem in loadSubTree in search field with id X
This commit is contained in:
m-lopez-f 2015-01-28 11:56:38 +01:00
parent d2238434f0
commit e879f6f755
1 changed files with 1 additions and 1 deletions

View File

@ -709,7 +709,7 @@ ui_require_jquery_file("ui.datepicker-" . get_user_language(), "include/javascri
* id_father int use in js and ajax php, its useful when you have a two subtrees with same agent for diferent each one
*/
function loadSubTree(type, div_id, less_branchs, id_father, server_name) {
var id = id_father + '_' + type + '_' + server_name + '_' + div_id;
var id = id_father + '_' + type + '_' + server_name.replace('.','\\.') + '_' + div_id;
var hiddenDiv = $('#tree_div' + id).attr('hiddenDiv');
var loadDiv = $('#tree_div' + id).attr('loadDiv');