Package org.geoserver.web.data.store

Examples of org.geoserver.web.data.store.StoreListChoiceRenderer


        sources = new WebMarkupContainer("sources");
        sources.setOutputMarkupId(true);
        form.add(sources);

        stores = new DropDownChoice<StoreInfo>("stores",
                new Model(null), new StoreListModel(), new StoreListChoiceRenderer());
        stores.add(new AjaxFormComponentUpdatingBehavior("onchange") {
           
            @Override
            protected void onUpdate(AjaxRequestTarget target) {
                types.setChoices(new TypeListModel(stores.getModel()));
View Full Code Here


        };
    }

    private DropDownChoice storesDropDown() {
        final DropDownChoice stores = new DropDownChoice("storesDropDown", new Model(),
                new StoreListModel(), new StoreListChoiceRenderer());
        stores.setOutputMarkupId(true);
        stores.add(new AjaxFormComponentUpdatingBehavior("onchange") {
           
            @Override
            protected void onUpdate(AjaxRequestTarget target) {
View Full Code Here

TOP

Related Classes of org.geoserver.web.data.store.StoreListChoiceRenderer

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.