/** * Project  : AMDA-NG * Name : PlotLayoutVerticalObject.js * @class amdaPlotObj.PlotLayoutVerticalObject * @extends Ext.data.Model * @brief Plot Vertical Layout Business Object Definition * @author Benjamin Renard * @version $Id: PlotLayoutVerticalObject.js benjamin $ ****************************************************************************** * FT Id : Date : Name - Description ****************************************************************************** * : :25/08/2015: BRE - file creation */ Ext.define('amdaPlotObj.PlotLayoutVerticalObject', { extend: 'Ext.data.Model', requires: [ 'amdaPlotObj.PlotObjectConfig' ], fields : [ {name: 'layout-panel-height', type: 'float', defaultValue: amdaPlotObj.PlotObjectConfig.defaultValues.page.layout.panelHeight}, {name: 'layout-panel-spacing', type: 'float', defaultValue: amdaPlotObj.PlotObjectConfig.defaultValues.page.layout.panelSpacing}, {name: 'layout-expand', type: 'boolean', defaultValue: amdaPlotObj.PlotObjectConfig.defaultValues.page.layout.expand}, //{name: 'layout-timeplot-width', type: 'float', useNull:true}, {name: 'layout-timeplot-height', type: 'float', useNull:true}, {name: 'layout-xyplot-width', type: 'float', useNull:true}, {name: 'layout-xyplot-height', type: 'float', useNull:true} ], getJsonValues : function() { var layoutValues = new Object(); layoutValues['layout-panel-height'] = this.get('layout-panel-height'); layoutValues['layout-panel-spacing'] = this.get('layout-panel-spacing'); layoutValues['layout-expand'] = this.get('layout-expand'); //layoutValues['layout-timeplot-width'] = this.get('layout-timeplot-width') ? this.get('layout-timeplot-width') : -1; layoutValues['layout-timeplot-height'] = this.get('layout-timeplot-height') ? this.get('layout-timeplot-height') : -1; layoutValues['layout-xyplot-width'] = this.get('layout-xyplot-width') ? this.get('layout-xyplot-width') : -1; layoutValues['layout-xyplot-height'] = this.get('layout-xyplot-height') ? this.get('layout-xyplot-height') : -1; return layoutValues; } });