Tema: TyneMCE
Ver Mensaje Individual
  #4 (permalink)  
Antiguo 14/04/2010, 08:00
Avatar de mayid
mayid
Colaborador
 
Fecha de Ingreso: marzo-2009
Ubicación: BsAs
Mensajes: 4.014
Antigüedad: 15 años, 7 meses
Puntos: 101
Respuesta: TyneMCE

Cita:
No creo que necesitas el $.each. Con el click ya está creando una colección.
Siempre tuve la duda!

Cita:
originalmente no tengo textareas. Pero lo resolví con un evento click + el metodo .wrap.
Cita:
te aconsejo que uses "tinyMCE.execCommand" para esos casos
Con exec.Command no necesito de esto otro? Antes yo llamaba a esta funcion para hacer un editor personalizado, mirá (como la integro ahora?):

Cita:
function editor(id) {

tinyMCE.init({
theme : "advanced",
mode : "textareas",
plugins : "safari,table,save,media",
theme_advanced_buttons1 : "bold,italic,underline,strikethrough,|,removeforma t,|,justifyleft,justifycenter,justifyright,justify full,|,formatselect,fontselect,fontsizeselect",
theme_advanced_buttons2 : "bullist,numlist,|,outdent,indent,blockquote,|,und o,redo,|,link,unlink,anchor,image,cleanup,help,cod e",
theme_advanced_buttons3 : "tablecontrols,|,|,media,|,print|,save",
theme_advanced_toolbar_location : "top",
editor_selector : id
});

}
Ahora, con execCommand me aparece el editor simple. Y por cierto, no me funciona el div.focus();

Gracias Juaniquillo!

Última edición por mayid; 14/04/2010 a las 08:06