(Created page with 'All configurations for CKFinder for ASP.NET can be found in the '''config.ascx''' file. To learn more go throughout the following sections: * [[CKFinder_2.x/Developers Guide/ASP…') |
|||
Line 8: | Line 8: | ||
** [[CKFinder_2.x/Developers Guide/ASP.NET/Configuration/Resource Types/Built-in|Built-in resource types]] | ** [[CKFinder_2.x/Developers Guide/ASP.NET/Configuration/Resource Types/Built-in|Built-in resource types]] | ||
** [[CKFinder_2.x/Developers Guide/ASP.NET/Configuration/Resource Types/New|Adding new resource types]] | ** [[CKFinder_2.x/Developers Guide/ASP.NET/Configuration/Resource Types/New|Adding new resource types]] | ||
+ | |||
+ | {{CKFinder_2.x JavaScript Configuration|language=ASP.NET}} |
Revision as of 12:25, 18 May 2010
All configurations for CKFinder for ASP.NET can be found in the config.ascx file. To learn more go throughout the following sections:
JavaScript Configuration
CKFinder configuration in JavaScript is based on editing the config.js
file.
Unlike the ASP.NET configuration, it is more focused on the interface.
Below you will find some most commonly used configuration settings:
For the list of all available configuration options refer to the CKFinder API documentation.
Example
Below you can find a sample config.js
file.
CKFinder.customConfig = function( config ) { config.skin = 'v1'; config.language = 'fr'; };