id summary reporter owner description type status priority milestone component version resolution keywords cc 1288 "Make the ""More Colors..."" button optional" Stéphane Toussaint "Hi, It would be very useful to make the ""More Colors..."" button optional. We want to reduce the number of colors available for our users. That is almost done by the FCKConfig.FontColors property, but as the ""More Colors..."" button is always available we can't achieve our wish. We have currently fix it within the source code (and repackage FCKEditor) but this is not a good way as we have to think (and sometimes forget) of it at each update. Our Proposition : ''(fckconfig.js)'' {{{ FCKConfig.EnableMoreFontColors = true ; }}} ''(fcktextcolorcommand.js)'' {{{ if ( FCKConfig.EnableMoreFontColors ) { // Create the Row and the Cell for the ""More Colors..."" button. oCell = oTable.insertRow(-1).insertCell(-1) ; oCell.colSpan = 8 ; oDiv = oCell.appendChild( CreateSelectionDiv() ) ; oDiv.innerHTML = '
' + FCKLang.ColorMoreColors + '
' ; oDiv.Command = this ; oDiv.onclick = FCKTextColorCommand_MoreOnClick ; } }}} Thanks in advance " New Feature closed Normal FCKeditor 2.5 Beta UI : Toolbar FCKeditor 2.4.3 fixed