Hi 
somme help
how to do this 
please

var submitButton = Ext.create('Ext.button.Button', {
    text : 'Afficher sur la carte'      
}
)

submitButton.handler = function() {
    var datasetId = Ext.getCmp('promosCombo').getValue();
    if (datasetId && datasetId != '') {
        var proto = new OpenLayers.Protocol.HTTP({
            url: "silos_satellite.php?nom_silo=" + datasetId,
            format: new OpenLayers.Format.GeoJSON()
        });
        silossatellite.protocol = proto;
        silossatellite.refresh();
    }
    else {
        Ext.MessageBox.alert("Erreur !","Veuillez d'abord sélectionner un silo 
à afficher.");
    }
}
_______________________________________________
Users mailing list
Users@geoext.org
http://www.geoext.org/cgi-bin/mailman/listinfo/users

Reply via email to