I have a tree with XML and XML auto loading.
When i use the refreshItem after a change this doesn’t work in Safari. In Safari all items in the refreshed tree item will be “deleted” after the refreshItem call.
So i must load the full tree new to see the change correctly.
Which version of Safari you are using?
The refreshItem functionality works correctly in local samples
dhtmlx.com/docs/products/dhtmlxT … tions.html
By default refreshItem delete all child items and load new XML from server for branch in question, if you need to preserve local changes you can try to use
tree.smartRefreshItem
tree.smartRefreshBranch
Latest Safari.
Try refreshItem():
Firefox3: all ok
MSIE6: works but height of tree will be resized
Safari3: delete all items in refreshed item
Try smartRefreshItem():
Firefox3: all ok
MSIE6: works but height of tree will be resized (fewer than with refreshItem)
Safari3: nothing happens, don’t work
Try smartRefreshBranch():
Firefox3: all ok
MSIE6: works but height of tree will be resized (fewer than with refreshItem)
Safari3: nothing happens, don’t work
problem found:
i have a frame with the tree and another frame where i call the refresh, that doesn’t work in Safari.
Example:
frame with tree has id frame_tree:
so i called from the other frame:
parent.frame_tree.tree.refreshItem(id); -> doesn’t work in Safari
While all frames loaded with document from the same domain there must not be any problems in call itself, but if you are using relatinve paths the situation can be a bit more complex.
The refreshItem will load xml file by path relative to location of frame from which command called, so in result it may be not expected url.
Please try to use debug version of dhtmlxcommon
dhtmlx.com/docs/products/kb/inde … tmlxcommon
and check which file fethced for refresh call.
All scripts are in the same location.
I used the debug version and after the call of refreshItem no debug info will be shown in Safari -> no call
Only on loading the tree the calls will be shown.
Is the name of frame hardcoded in HTML, or it set dynamically by the script? (in second case browser may not found target frame - the situation is specific for some versions of browser only )
Name is hardcoded, i have now set the xml url from relative to an complete url with http:// and this works.