The forum operates in read-only mode. Please head to StackOverflow for support.
Hello, I need to activate config.tabSpaces but I can not. Can anyone help me?
What does it mean that you cannot activate it? What exactly have you tried already? This article explains how to set CKEditor configuration.
Remember to clear the browser cache after you modify the configuration!
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help. Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Solution:
CKEDITOR.editorConfig = function( config ) { // Define changes to default configuration here. For example: // config.language = 'fr'; // config.uiColor = '#AADC6E'; config.tabSpaces = 4; //default is 0 and disables TAB
};
Thanks Anna
What does it mean that you
What does it mean that you cannot activate it? What exactly have you tried already? This article explains how to set CKEditor configuration.
Remember to clear the browser cache after you modify the configuration!
Documentation Manager, CKSource
See CKEditor 5 docs, CKEditor 4 docs, CKEditor 3 docs, CKFinder 3 docs, CKFinder 2 docs for help.
Visit the new CKEditor SDK for samples showcasing editor features to try out and download!
Solution:
Solution:
CKEDITOR.editorConfig = function( config ) {
// Define changes to default configuration here. For example:
// config.language = 'fr';
// config.uiColor = '#AADC6E';
config.tabSpaces = 4; //default is 0 and disables TAB
};
Thanks Anna