Tema: TyneMCE
Ver Mensaje Individual
  #3 (permalink)  
Antiguo 13/04/2010, 09:02
Avatar de juaniquillo
juaniquillo
Colaborador
 
Fecha de Ingreso: noviembre-2005
Ubicación: San Juan, Puerto Rico
Mensajes: 5.745
Antigüedad: 19 años
Puntos: 281
Respuesta: TyneMCE

No creo que necesitas el $.each. Con el click ya está creando una colección. El theme simple sí ocupa menos espacio, aunque si solo cargas los botones que necesitas tampoco.

De cualquier forma, te aconsejo que uses "tinyMCE.execCommand" para esos casos. Esto convierte un elemento en un editor TinyMCE. Ent u caso sólo necesitas:


Código Javascript:
Ver original
  1. $(document).ready(function(){
  2.     $("a.edition").click(function(){
  3.    
  4.         var div = $(this).closest();
  5.         var id = div.attr("id");
  6.         tinyMCE.execCommand('mceAddControl', false, id);
  7.         div.focus();
  8.         return false;
  9.    
  10.     });
  11. });

Como ves, aquí le paso el id del div que quieres que sea el editor a la función.


Aquí puedes ver las opciones que tienes disponibles en tinyMCE.execCommand: http://wiki.moxiecode.com/index.php/TinyMCE:Commands
__________________
Por fin.. tengo algo parecido a un blog
Y por lo visto ya estoy escribiendo...