BUG-13317 SOLVED La sección de edición de DynaForms en la ruta: 'DESIGNER', dblclick en algún un proceso,elegir la opción DYNAFORMS, realizar la edición de algún DynaForms mediante la opción 'Edit', los tabs: PrevieW, XML, HTML, Fileds handler, JavaScripts, Properties, Condition editor, en algún instante de uso se bloquean y no pueden cargar el contenido respectivo.

This commit is contained in:
Roly Gutierrez
2013-10-18 15:44:20 -04:00
parent 8a053bc153
commit d2ac62f6bd

View File

@@ -384,7 +384,11 @@ var dynaformEditor={
saveHtmlCode:function()
{
//var htmlCode = getField("HTML");
var response = this.ajax.set_htmlcode(this.A, tinyMCE.activeEditor.getContent());
var response = null;
try {
response = this.ajax.set_htmlcode(this.A, tinyMCE.activeEditor.getContent());
} catch (e) {
}
if (response) {
if (typeof(response["*message"]) != 'undefined') {