/* * This is part of Geomajas, a GIS framework, http://www.geomajas.org/. * * Copyright 2008-2015 Geosparc nv, http://www.geosparc.com/, Belgium. * * The program is available in open source according to the GNU Affero * General Public License. All contributions in this program are covered * by the Geomajas Contributors License Agreement. For full licensing * details, see LICENSE.txt in the project root. */ package org.geomajas.gwt.example.client.sample.attribute; import com.google.gwt.core.client.GWT; import org.geomajas.gwt.example.base.SamplePanel; import org.geomajas.gwt.example.base.SamplePanelFactory; import org.geomajas.gwt.client.map.layer.VectorLayer; import org.geomajas.gwt.client.widget.FeatureAttributeEditor; import org.geomajas.gwt.client.widget.MapWidget; import com.smartgwt.client.widgets.Canvas; import com.smartgwt.client.widgets.layout.VLayout; import org.geomajas.gwt.example.client.sample.i18n.SampleMessages; /** * <p> * Sample that shows an attribute form, thereby testing the "includeInForm=false" for the integer attribute. * </p> * * @author Pieter De Graef */ public class AttributeIncludeInFormSample extends SamplePanel { private static final SampleMessages MESSAGES = GWT.create(SampleMessages.class); public static final String TITLE = "AttributeIncludeInForm"; public static final SamplePanelFactory FACTORY = new SamplePanelFactory() { public SamplePanel createPanel() { return new AttributeIncludeInFormSample(); } }; public Canvas getViewPanel() { final VLayout layout = new VLayout(); layout.setMembersMargin(10); layout.setWidth100(); layout.setHeight100(); // Map with ID beansMap is defined in the XML configuration. (contains any type of attribute) final MapWidget map = new MapWidget("mapBeansIncludeInForm", "gwtExample"); map.setVisible(false); layout.addMember(map); map.init(); map.getMapModel().runWhenInitialized(new Runnable() { public void run() { VectorLayer layer = (VectorLayer) map.getMapModel().getLayer("beansLayerIncludeInForm"); FeatureAttributeEditor editor = new FeatureAttributeEditor(layer, false); editor.setWidth(400); layout.addMember(editor); } }); return layout; } public String getDescription() { return MESSAGES.attributeIncludeInFormDescription(); } public String[] getConfigurationFiles() { return new String[] { "classpath:org/geomajas/gwt/example/context/layerBeansIncludeInForm.xml", "classpath:org/geomajas/gwt/example/context/mapBeansIncludeInForm.xml" }; } public String ensureUserLoggedIn() { return "luc"; } }