É possível definir inicialmente o tamanho da fonte de um campo tipo HTML Editor?
Pretendo iniciar com tamanho 12
Boa tarde!!
Sei que é um tópico antigo mas eu estava precisando disso também e consegui através deste tópico:
Basta colar o código abaixo no evento onLoad da aplicação:
<script>
(function changeHtmlEditor(){
var editors = [];
var changeEditor = function(){
for(var x = 0; x < editors.length; x++){
editors[x].getDoc().body.style.fontSize = 20; // here is where the 'magic' happens
}
};
// wait until one or more editor is created by ScriptCase or
// loop reaches its limit
var maxLoop = 100;
var currentLoop = 0;
var interval = setInterval(function(){
editors = tinyMCE.get();
if(editors.length || currentLoop >= maxLoop){
clearInterval(interval);
changeEditor();
}
currentLoop++;
}, 50);
})();
</script>
Thyago Brasil, muitíssimo obrigado.
Perfeito.