forked from extern/egroupware
setting an (unlikely) custom delimiter, to allow to use "," in value, eg. folder-name, IF values are specified as array
This commit is contained in:
parent
0e21ee126b
commit
346215edc6
@ -188,12 +188,15 @@ var et2_tree = et2_inputWidget.extend(
|
|||||||
image_path: widget.options.image_path,
|
image_path: widget.options.image_path,
|
||||||
checkbox: widget.options.multiple
|
checkbox: widget.options.multiple
|
||||||
});
|
});
|
||||||
|
// to allow "," in value, eg. folder-names, IF value is specified as array
|
||||||
|
widget.input.dlmtr = ':}-*(';
|
||||||
|
|
||||||
if (widget.options.std_images)
|
if (widget.options.std_images)
|
||||||
{
|
{
|
||||||
widget.setImages.apply(widget, widget.options.std_images.split(','));
|
widget.setImages.apply(widget, widget.options.std_images.split(','));
|
||||||
}
|
}
|
||||||
// Add in the callback so we can keep the two in sync
|
// Add in the callback so we can keep the two in sync
|
||||||
widget.input.AJAX_callback = function(dxmlObject) {
|
widget.input.AJAX_callback = function(dxmlObject) {
|
||||||
widget._dhtmlxtree_json_callback(JSON.parse(dxmlObject.xmlDoc.responseText), widget.input.lastLoadedXMLId);
|
widget._dhtmlxtree_json_callback(JSON.parse(dxmlObject.xmlDoc.responseText), widget.input.lastLoadedXMLId);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user