Ver Mensaje Individual
  #6 (permalink)  
Antiguo 06/04/2010, 10:43
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: alinear imagen en un wysiwyg editor

Estuve viendo el listado de comandos para edicion inline, pero no hay nada que se parezca a la alineación de imagen:
http://msdn.microsoft.com/en-us/library/ms533049.aspx

Existen editores como el tinyMC que utilizan las herramientas de parrafo para flotar imagenes, pero la mayoría no tiene implementado ese soporte.

Los editores suelen estar programados como POO, y los comandos son por ejemplo así:
Cita:
createLink : function( szURL )
{
var self = $.data(this, 'wysiwyg');

if ( self.constructor == Wysiwyg && szURL && szURL.length > 0 )
{
var selection = $(self.editor).documentSelection();

if ( selection.length > 0 )
{
if ($.browser.msie) self.focus();
self.editorDoc.execCommand('unlink', false, []);
self.editorDoc.execCommand('createLink', false, szURL);
}
else if ( self.options.messages.nonSelection )
alert(self.options.messages.nonSelection);
}
},
La seccion de alineado parece mas simple:
Cita:
justifyFull : { visible : true, css : { textAlign : 'justify' }, tooltip : "Justify Full" },
Pero la verdad no entiendo nada de como funciona esto.Intente esto pero sin resultado:
Cita:
flotar : { visible : true, tags : ['float'], css : { float : 'right' }, tooltip : "Float" }