Commit 7231986b authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Comienza corrección de vistas de edición

Corrige la carga inicial de las vistas de edición, así como su diseño
externo.
parent 867d687a
Loading
Loading
Loading
Loading
+15 −8
Original line number Diff line number Diff line
define([
	"dojo/_base/declare"
	, "dojo/_base/lang"
	'app/designs/base/_Layout'
	, 'dojo/_base/declare'
	, 'dojo/_base/lang'
], function(
	declare
	_Layout
	, declare
	, lang
) {
	return declare(null, {

	return declare(_Layout, {
		//	summary:
		//		Layout para vistas de edición.

		constructor: function(args) {

			lang.mixin(this, args);
			this.config = {
				layoutAdditionalClasses: 'layoutEditionDesign'
			};

			lang.mixin(this, this.config, args);
		}
	});
});
+1 −6
Original line number Diff line number Diff line
@@ -205,11 +205,7 @@ define([

			this.stepLabelNode = put(this.wizardContentNode, "div." + this.stepLabelClass);

			this.contentNode = new BorderContainer({
				'class': this.contentClass
			});

			put(this.wizardContentNode, this.contentNode.domNode);
			this.contentNode = put(this.wizardContentNode, "div." + this.contentClass);

			//this.container.onkeyup = lang.hitch(this, this._eventKeyCode);
		},
@@ -596,7 +592,6 @@ define([

			this._setVisitedStep(stepId);
			this._setLabel(stepLabel, stepId);
			this.contentNode.resize();
		},

		_setVisitedStep: function(id) {
Compare 4fccdd04 to 0af51354
Original line number Diff line number Diff line
Subproject commit 4fccdd04af0c790b5b42102c21e609379233a5fc
Subproject commit 0af513548c5159bb22cce2431d52a2cd77315f83