Bienvenue sur PostGIS.fr

Bienvenue sur PostGIS.fr , le site de la communauté des utilisateurs francophones de PostGIS.

PostGIS ajoute le support d'objets géographique à la base de données PostgreSQL. En effet, PostGIS "spatialise" le serverur PostgreSQL, ce qui permet de l'utiliser comme une base de données SIG.

Maintenu à jour, en fonction de nos disponibilités et des diverses sorties des outils que nous testons, nous vous proposons l'ensemble de nos travaux publiés en langue française.

source: trunk/workshop-routing-foss4g/web/ext/src/widgets/form/Hidden.js @ 76

Revision 76, 1.0 KB checked in by djay, 12 years ago (diff)

Ajout du répertoire web

  • Property svn:executable set to *
Line 
1/*!
2 * Ext JS Library 3.4.0
3 * Copyright(c) 2006-2011 Sencha Inc.
4 * licensing@sencha.com
5 * http://www.sencha.com/license
6 */
7/**
8 * @class Ext.form.Hidden
9 * @extends Ext.form.Field
10 * A basic hidden field for storing hidden values in forms that need to be passed in the form submit.
11 * @constructor
12 * Create a new Hidden field.
13 * @param {Object} config Configuration options
14 * @xtype hidden
15 */
16Ext.form.Hidden = Ext.extend(Ext.form.Field, {
17    // private
18    inputType : 'hidden',
19   
20    shouldLayout: false,
21
22    // private
23    onRender : function(){
24        Ext.form.Hidden.superclass.onRender.apply(this, arguments);
25    },
26
27    // private
28    initEvents : function(){
29        this.originalValue = this.getValue();
30    },
31
32    // These are all private overrides
33    setSize : Ext.emptyFn,
34    setWidth : Ext.emptyFn,
35    setHeight : Ext.emptyFn,
36    setPosition : Ext.emptyFn,
37    setPagePosition : Ext.emptyFn,
38    markInvalid : Ext.emptyFn,
39    clearInvalid : Ext.emptyFn
40});
41Ext.reg('hidden', Ext.form.Hidden);
Note: See TracBrowser for help on using the repository browser.