mirror of
https://github.com/pandorafms/pandorafms.git
synced 2025-07-31 01:35:36 +02:00
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:
parent
d2238434f0
commit
e879f6f755
@ -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
|
* 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) {
|
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 hiddenDiv = $('#tree_div' + id).attr('hiddenDiv');
|
||||||
var loadDiv = $('#tree_div' + id).attr('loadDiv');
|
var loadDiv = $('#tree_div' + id).attr('loadDiv');
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user