Package org.apache.syncope.console.wicket.markup.html.form

Source Code of org.apache.syncope.console.wicket.markup.html.form.AjaxPalettePanel

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*   http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.syncope.console.wicket.markup.html.form;

import java.io.Serializable;
import java.util.List;
import org.apache.syncope.console.commons.SelectChoiceRenderer;
import org.apache.wicket.extensions.markup.html.form.palette.Palette;
import org.apache.wicket.markup.html.form.IChoiceRenderer;
import org.apache.wicket.model.IModel;
import org.apache.wicket.model.util.ListModel;

public class AjaxPalettePanel<T> extends AbstractFieldPanel {

    private static final long serialVersionUID = 7738499668258805567L;

    final Palette<T> palette;

    public AjaxPalettePanel(final String id, final IModel<List<T>> model, final ListModel<T> choices) {
        this(id, model, choices, false);
    }

    public AjaxPalettePanel(final String id, final IModel<List<T>> model, final ListModel<T> choices,
            final boolean allowOrder) {

        this(id, model, choices, new SelectChoiceRenderer(), allowOrder);
    }

    public AjaxPalettePanel(final String id, final IModel<List<T>> model, final ListModel<T> choices,
            final IChoiceRenderer<T> renderer, final boolean allowOrder) {

        super(id, model);

        this.palette = new NonI18nPalette<T>("paletteField", model, choices, renderer, 8, allowOrder);
        add(palette.setOutputMarkupId(true));
        setOutputMarkupId(true);
    }

    @Override
    public AbstractFieldPanel setModelObject(final Serializable object) {
        palette.setDefaultModelObject(object);
        return this;
    }
}
TOP

Related Classes of org.apache.syncope.console.wicket.markup.html.form.AjaxPalettePanel

TOP
Copyright © 2018 www.massapi.com. 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.