All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.myfaces.custom.dojo.resource.src.widget.Editor2Plugin.ToolbarDndSupport.js Maven / Gradle / Ivy

/*
	Copyright (c) 2004-2006, The Dojo Foundation
	All Rights Reserved.

	Licensed under the Academic Free License version 2.1 or above OR the
	modified BSD license. For more information on Dojo licensing, see:

		http://dojotoolkit.org/community/licensing.shtml
*/

/*TODO:
 * Add a command to toggle DnD support for a toolbar
 * Save/restore order of toolbar/item
 */
dojo.provide("dojo.widget.Editor2Plugin.ToolbarDndSupport");
dojo.require("dojo.dnd.*");

dojo.event.topic.subscribe("dojo.widget.Editor2::preLoadingToolbar", function(editor){
	dojo.dnd.dragManager.nestedTargets = true;
	var p = new dojo.widget.Editor2Plugin.ToolbarDndSupport(editor);
});

dojo.declare("dojo.widget.Editor2Plugin.ToolbarDndSupport", null,{
	lookForClass: "dojoEditorToolbarDnd TB_ToolbarSet TB_Toolbar",
	initializer: function(editor){
		this.editor = editor;
		dojo.event.connect(this.editor, "toolbarLoaded", this, "setup");
		this.editor.registerLoadedPlugin(this);
	},

	setup: function(){
		dojo.event.disconnect(this.editor, "toolbarLoaded", this, "setup");
		var tbw = this.editor.toolbarWidget;
		dojo.event.connect("before", tbw, "destroy", this, "destroy");

		var nodes = dojo.html.getElementsByClass(this.lookForClass, tbw.domNode, null, dojo.html.classMatchType.ContainsAny);
		if(!nodes){
			dojo.debug("dojo.widget.Editor2Plugin.ToolbarDndSupport: No dom node with class in "+this.lookForClass);
			return;
		}
		for(var i=0; i




© 2015 - 2024 Weber Informatics LLC | Privacy Policy