Estoy cargando un registro de la db (html) a un textarea manejada por TinyMCE, para luego crear otro registro con esa data. Lo utilizo para reutilizar el contenido de un registro, y crear uno nuevo.
El problema es que cargo el html, tinymce lo muestra correctamente, pero al guardarlo no sucede nada, no crea registros en la db. Hice la prueba borrando el contenido de los textareas, y escribiendo directamente, al guardar funciona todo normal.
mi configuracion de tinymce es:
Código:
No se que sucede, podrian ayudarme?<script type="text/javascript" > tinyMCE.init({ mode : "textareas", content_css : "css/est_ficha.css", language : "es", theme : "advanced", theme_advanced_blockformats : "p,h1,h2,h3", theme_advanced_toolbar_align : "left", theme_advanced_toolbar_location : "top", theme_advanced_disable : "help,sub,sup,cleanup,code,removeformat,strikethrough,outdent,separator", width : "432", height : "300", theme_advanced_resizing_max_width : 394, backcolor:"black", theme_advanced_default_background_color : "#000", theme_advanced_styles : "Destacar=parrafo_destacado", plugins : "table,contextmenu", theme_advanced_buttons3_add : "tablecontrols", table_styles : "Header 1=header1;Header 2=header2;Header 3=header3", table_cell_styles : "Header 1=header1;Header 2=header2;Header 3=header3;Table Cell=tableCel1", table_row_styles : "Header 1=header1;Header 2=header2;Header 3=header3;Table Row=tableRow1", table_col_limit : 5, entity_encoding : "raw", verify_html : false, cleanup : false, preformatted : false }); </script>
Saludos