mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-04-08 18:55:09 +02:00
Fixed problem in tree view with servername containt dot, tree not expand
Problem in loadSubTree in search field with id X (cherry picked from commit 080f98e549fc616e730f3c12315c485bd8eb37dd)
This commit is contained in:
parent
33bf0a4e7b
commit
913dce186d
@ -703,7 +703,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');
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user