﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
11858	Unable to load xml template on Editor	Digvijay Chauhan		"Hi CHEditor Team,

I need your help on to load XML template on CKEditor version # (ckeditor_4.3.4_45ff4ed2c0e6).

Problem: Unable to load xml template on Editor.

I have tried all the possible combination as given on internet (http://ckeditor.com/forums/Plugins/XML-templates ) but did not find any progress.

Please following Item those may help you to understand the problem.

=========== Config.js ==============================
	/**
 * @license Copyright (c) 2003-2014, CKSource - Frederico Knabben. All rights reserved.
 * For licensing, see LICENSE.html or http://ckeditor.com/license
 */

CKEDITOR.editorConfig = function( config ) {
	
	// %REMOVE_START%
	// The configuration options below are needed when running CKEditor from source files.
	config.plugins = 'dialogui,dialog,about,a11yhelp,dialogadvtab,basicstyles,bidi,blockquote,clipboard,button,panelbutton,panel,floatpanel,colorbutton,colordialog,templates,menu,contextmenu,div,resize,toolbar,elementspath,enterkey,entities,popup,filebrowser,find,fakeobjects,flash,floatingspace,listblock,richcombo,font,forms,format,horizontalrule,htmlwriter,iframe,wysiwygarea,image,indent,indentblock,indentlist,smiley,justify,menubutton,language,link,list,liststyle,magicline,maximize,newpage,pagebreak,pastetext,pastefromword,preview,print,removeformat,save,selectall,showblocks,showborders,sourcearea,specialchar,scayt,stylescombo,tab,table,tabletools,undo,wsc';
	config.skin = 'moono';
	config.extraPlugins = 'xmltemplates';
	//config.extraPlugins = 'xml';
	//config.extraPlugins = 'ajax';
	//config.templates_files = ['xml:fcktemplates.xml'];
	config.templates_files = ['file:///C:/TestEditor/plugins/xmltemplates/sample/fcktemplates.xml'];
	//config.templates_files = [‘xml : C:/TestEditor/plugins/xmltemplates/sample/fcktemplates.xml’]';
	// %REMOVE_END%

	// Define changes to default configuration here. For example:
	// config.language = 'fr';
	// config.uiColor = '#AADC6E';
};

==============HTML====================
<!DOCTYPE html>
<html>
    <head>
        <title>A Simple Page with CKEditor</title>
        <!-- Make sure the path to CKEditor is correct. -->
        <script src=""ckeditor.js""></script>
    </head>
    <body>
        <form>
            <textarea name=""editor1"" id=""editor1"" rows=""10"" cols=""80"">
                This is my textarea to be replaced with CKEditor.
            </textarea>
            <script>
                // Replace the <textarea id=""editor1""> with a CKEditor
                // instance, using default configuration.
                CKEDITOR.replace( 'editor1' );
            </script>
        </form>
    </body>
</html>

Regards,
Digvijay Chauhan
"	Task	closed	Normal		General		invalid		digvijayc@…
