Foro

HTML en un textarea

0
Hola a todos, tengo un problemita y espero que me puedan ayudar a resolverlo. Tengo un form un donde muestro cierta informacion, dentro de el, tego un HTML editor y varios textareas. El problema es que en la DB, existe data guardada como HTML. El editor, la muestra correctamente, pero el textarea no. Me explico mejor: - Teniendo este texto: There’s no real El editor la muestra bien "There's no real" El textarea la muestra "There’s no real" Existe alguna posibilidad de mostrar en el textarea la conversion de esos caracteres, o tengo que hacerlo a mano? Son simplemente caracteres, obviamente no quiero mostrar divs o imgs en un textarea. Gracias.
0
Habría que ver si esto resulve tu problema [url=http://www.extjs.com/deploy/dev/docs/?class=Ext.form.TextArea]TextArea[/url] Como petición traten de poner la parte del código que da problemas, de ese modo es mas fácil ayudarnos... Usa HTML y no VALUE nota también cambié las comillas simples ( ' ) por las dobles ( " ). [quote]HTML : An HTML fragment, or a DomHelper specification to use as the layout element content (defaults to ''). The HTML content is added after the component is rendered, so the document will not contain this HTML at the time the render event is fired. This content is inserted into the body before any configured contentEl is appended. [/quote]
Ext.onReady(function(){
	
	var form = new Ext.FormPanel({
		
		title     : 'Formulario',
		
		bodyStyle : 'padding : 10px',
		
		items     : [
			{
				fieldLabel : 'Textarea',
				xtype      : 'textarea',
				//value      : "There’s no real",
				html       : "There’s no real"
			}
		]
		
	});
	
	new Ext.Window({
		
		title  : 'Playground',
		
		width  : 500,
		height : 300,
		
		border : false,
		items  : form
		
	}).show();
	
})

¿Conoces a alguien que pueda responder esta pregunta? Comparte el link en Twitter o Facebook

Es necesario registrarse para poder participar en el foro! Si ya tienes una cuenta puedes entrar y comentar en este foro.