Hello,
I’m using the dhtmlxTree to dynamically populate a tree to emulate ‘browse for folder’. The server is generating required XML when each node is expanded. Each node holds/store the current folder path in the id tag. This works very well with at least one exception:
If the folder path has + (plus sign) in the path name, this plus sign is never sent back to the server when expanding the node.
Is this a bug or by design? Since + (plus sign) is a valid windows path i really need this to work.
Regards
Michael from Sweden
Hello,
you can try use the following approach to solve the issue:
tree.setEscapingMode(“utf8”);
Thank,
Yes, setEscapingMode solved this issue!
Regards,
Michael