Changeset 1328
- Timestamp:
- 11/20/08 08:09:21 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/MapFish/client/mfbase/mapfish/widgets/print/Base.js
r1307 r1328 54 54 /** 55 55 * APIProperty: map 56 * {<OpenLayers.Map>} -The OpenLayers Map object.56 * {<OpenLayers.Map>} The OpenLayers Map object. 57 57 */ 58 58 map: null, … … 68 68 /** 69 69 * APIProperty: configUrl 70 * {String} -The URL to access .../config.json. Either this property or71 * config must be set.70 * {String} The URL to access .../config.json. Either this property or 71 * config must be set. 72 72 */ 73 73 configUrl: null, … … 75 75 /** 76 76 * APIProperty: config 77 * {Object} -The response from .../config.json. Either this property or78 * configUrl must be set.77 * {Object} The response from .../config.json. Either this property or 78 * configUrl must be set. 79 79 */ 80 80 config: null, … … 82 82 /** 83 83 * APIProperty: layerTree 84 * {<mapfish.widgets.LayerTree>} -An optional layer tree. Needed only if you85 * want to display legends.84 * {<mapfish.widgets.LayerTree>} An optional layer tree. Needed only if you 85 * want to display legends. 86 86 */ 87 87 layerTree: null, … … 89 89 /** 90 90 * APIProperty: grids 91 * {Object} -An optional dictionary of {Ext.grid.GridPanel}. Needed only92 * if you want to display search results. Can be function93 * (returning the dictionary) that will be called each time the94 * information is needed.91 * {Object} An optional dictionary of {Ext.grid.GridPanel}. Needed only 92 * if you want to display search results. Can be function 93 * (returning the dictionary) that will be called each time the 94 * information is needed. 95 95 */ 96 96 grids: null, … … 105 105 /** 106 106 * Property: pageDrag 107 * {<OpenLayers.Control.DragFeature>} -The control to move the extent.107 * {<OpenLayers.Control.DragFeature>} The control to move the extent. 108 108 */ 109 109 pageDrag: null, … … 111 111 /** 112 112 * Property: rotateHandle 113 * {<OpenLayers.Feature.Vector>} -The handle used to rotate the page.113 * {<OpenLayers.Feature.Vector>} The handle used to rotate the page. 114 114 */ 115 115 rotateHandle: null, … … 117 117 /** 118 118 * Property: layer 119 * {<OpenLayers.Layer.Vector>} -The layer to draw the extent119 * {<OpenLayers.Layer.Vector>} The layer to draw the extent 120 120 */ 121 121 layer: null, … … 123 123 /** 124 124 * Property: mask 125 * {Ext.LoadingMask} -The mask used when loading the configuration or126 * when generating the PDF125 * {Ext.LoadingMask} The mask used when loading the configuration or 126 * when generating the PDF 127 127 */ 128 128 mask: null, trunk/MapFish/client/mfbase/mapfish/widgets/print/MultiPage.js
r1299 r1328 48 48 /** 49 49 * APIProperty: formConfig 50 * {Object} -The configuration options passed to the form that edits the51 * options common to every pages.50 * {Object} The configuration options passed to the form that edits the 51 * options common to every pages. 52 52 * 53 53 * Can contain additional items for custom fields. Their values will be … … 58 58 /** 59 59 * APIProperty: columns 60 * {Array} -The Additionnal columns for "per page" custom fields.60 * {Array} The Additionnal columns for "per page" custom fields. 61 61 */ 62 62 columns: null, … … 64 64 /** 65 65 * APIProperty: zoomToExtentEnabled 66 * {Boolean} -If true, the map will try to always show the selected page's67 * extent by zooming out if necessary.66 * {Boolean} If true, the map will try to always show the selected page's 67 * extent by zooming out if necessary. 68 68 */ 69 69 zoomToExtentEnabled: true, … … 71 71 /** 72 72 * Property: grid 73 * {Ext.grid.EditorGridPanel} -The pages.73 * {Ext.grid.EditorGridPanel} The pages. 74 74 */ 75 75 grid: null, … … 77 77 /** 78 78 * Property: printButton 79 * {Ext.Button} -The "print" button.79 * {Ext.Button} The "print" button. 80 80 */ 81 81 printButton: null, trunk/MapFish/client/mfbase/mapfish/widgets/print/SimpleForm.js
r1251 r1328 48 48 /** 49 49 * APIProperty: formConfig 50 * {Object} -The configuration options passed to the form.50 * {Object} The configuration options passed to the form. 51 51 * 52 52 * Can contain additionnal items for custom fields. Their values will be … … 57 57 /** 58 58 * Property: scale 59 * {Ext.form.ComboBox} -The scale combobox.59 * {Ext.form.ComboBox} The scale combobox. 60 60 */ 61 61 scale: null, … … 63 63 /** 64 64 * Property: rectangle 65 * {<OpenLayers.Feature.Vector>} -The rectangle representing the extent.65 * {<OpenLayers.Feature.Vector>} The rectangle representing the extent. 66 66 */ 67 67 rectangle: null, … … 69 69 /** 70 70 * Property: rotation 71 * {Ext.form.TextField} -The text field for editing the rotation.71 * {Ext.form.TextField} The text field for editing the rotation. 72 72 */ 73 73 rotation: null, … … 75 75 /** 76 76 * APIProperty: infoPanel 77 * {Ext.Panel} -An optional panel displayed after form fields.77 * {Ext.Panel} An optional panel displayed after form fields. 78 78 */ 79 79 infoPanel: null,