Tema: TyneMCE
Ver Mensaje Individual
  #1 (permalink)  
Antiguo 12/04/2010, 13:22
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
TyneMCE

Tengo algunas dudas:

- el "theme" simple o advanced hace a la carga de ficheros livianos / pesados?

Necesito hacer algo así como una wiki, con múltiples editores siempre y cuando se apriete el boton editar. Es decir, originalmente no tengo textareas. Pero lo resolví con un evento click + el metodo .wrap.

- TyniMCE no tenía contemplado esto para hacerlo más facil?

Cita:
links = $("a.edition");
$.each(links,function(){

$(this).click(function(){

div = $(this).closest("div");
div.wrapInner('<textarea cols="70" rows="60"></textarea>');
id = div.attr("id");
initEditor(id);
div.focus();
return false;

});

});