Examples of IPropertySelectionModel


Examples of org.apache.tapestry.form.IPropertySelectionModel

public abstract class SelectionField extends AbstractPostfield
{
    protected void rewind(IRequestCycle cycle)
    {
        String optionValue = cycle.getParameter(getName());
        IPropertySelectionModel model = getModel();
        Object value = (optionValue == null) ? null : model.translateValue(optionValue);

        updateValue(value);
    }
View Full Code Here

Examples of org.apache.tapestry.form.IPropertySelectionModel

    {
        boolean render = !cycle.isRewinding();

        if (render)
        {
            IPropertySelectionModel model = getModel();

            writer.begin("select");

            writer.attribute("name", getName());

            renderInformalParameters(writer, cycle);

            writer.println();

            int count = model.getOptionCount();

            for (int i = 0; i < count; i++)
            {

                writer.begin("option");
                writer.attribute("value", model.getValue(i));

                writer.print(model.getLabel(i));

                writer.end();
                writer.println();
            }
View Full Code Here

Examples of org.apache.tapestry.form.IPropertySelectionModel

        return result;
    }

    public void pageBeginRender(PageEvent event)
    {
        IPropertySelectionModel model = getBooksModel();

        if (model == null)
        {
            model = buildBooksModel();
            setBooksModel(model);
View Full Code Here

Examples of org.apache.tapestry.form.IPropertySelectionModel

    public void pageValidate(PageEvent event)
    {
        super.pageValidate(event);

        IPropertySelectionModel model = buildBooksModel();

        if (model.getOptionCount() == 0)
        {
            IRequestCycle cycle = getRequestCycle();
            IActivate page = (IActivate) cycle.getPage("MyLibrary");

            page.activate(cycle);
View Full Code Here

Examples of org.apache.tapestry.form.IPropertySelectionModel

        List selectedList = (List) getBinding("selectedList").getObject(List.class);

        if (selectedList == null)
            throw Tapestry.createRequiredParameterException(this, "selectedList");

        IPropertySelectionModel model = getModel();

        if (model == null)
            throw Tapestry.createRequiredParameterException(this, "model");

        // Handle the form processing first.
        if (rewinding)
        {
            // If disabled, ignore anything that comes up from the client.

            if (isDisabled())
                return;

            // get all the values
            String[] optionValues = cycle.getParameters(name);

            // Clear the list

            selectedList.clear();

            // Nothing was selected
            if (optionValues != null)
            {

                // Go through the array and translate and put back in the list
                for (int i = 0; i < optionValues.length; i++)
                {
                    // Translate the new value
                    Object selectedValue = model.translateValue(optionValues[i]);

                    // Add this element in the list back
                    selectedList.add(selectedValue);
                }
            }

            return;
        }

        IMultiplePropertySelectionRenderer renderer = getRenderer();

        // Start rendering
        renderer.beginRender(this, writer, cycle);

        int count = model.getOptionCount();

        for (int i = 0; i < count; i++)
        {
            Object option = model.getOption(i);

            // Try to find the option in the list and if yes, then it is checked.
            boolean optionSelected = selectedList.contains(option);

            renderer.renderOption(this, writer, cycle, model, option, i, optionSelected);
View Full Code Here

Examples of org.apache.tapestry.form.IPropertySelectionModel

        String[] values = cycle.getParameters(getName());

        int count = Tapestry.size(values);

        List selected = new ArrayList(count);
        IPropertySelectionModel model = getModel();

        for (int i = 0; i < count; i++)
        {
            String value = values[i];
            Object option = model.translateValue(value);

            selected.add(option);
        }

        setSelected(selected);
View Full Code Here

Examples of org.apache.tapestry.form.IPropertySelectionModel

        PaletteColumn selectedColumn = new PaletteColumn(getName(), getClientId(), getRows());

        // Each value specified in the model will go into either the selected or available
        // lists.

        IPropertySelectionModel model = getModel();

        int count = model.getOptionCount();

        for (int i = 0; i < count; i++)
        {
            Object optionValue = model.getOption(i);

            PaletteOption o = new PaletteOption(model.getValue(i), model.getLabel(i));

            int index = selected.indexOf(optionValue);
            boolean isSelected = index >= 0;

            if (sortUser && isSelected)
View Full Code Here

Examples of org.apache.tapestry.form.IPropertySelectionModel

        json.put("dataUrl", link.getURL() + "&filter=%{searchString}");
        json.put("mode", MODE_REMOTE);
        json.put("widgetId", getName());
        json.put("name", getName());
       
        IPropertySelectionModel model = getModel();
        if (model == null)
            throw Tapestry.createRequiredParameterException(this, "model");
       
        int count = model.getOptionCount();
        Object value = getValue();
       
        for (int i = 0; i < count; i++) {
            Object option = model.getOption(i);
           
            if (isEqual(option, value)) {
                json.put("value", model.getValue(i));
                json.put("label", model.getLabel(i));
                break;
            }
        }
       
        parms.put("props", json.toString());
View Full Code Here

Examples of org.apache.tapestry.form.IPropertySelectionModel

    /**
     * {@inheritDoc}
     */
    public void renderComponent(IJSONWriter writer, IRequestCycle cycle)
    {
        IPropertySelectionModel model = getModel();
       
        if (model == null)
            throw Tapestry.createRequiredParameterException(this, "model");
       
        int count = model.getOptionCount();
       
        for (int i = 0; i < count; i++)
        {
            String value = model.getValue(i);
            String label = model.getLabel(i);
           
            if (getFilter() == null || getFilter().trim().length() <= 0) {
                writer.put(value, label);
                continue;
            }
View Full Code Here

Examples of org.apache.tapestry.form.IPropertySelectionModel

        PaletteColumn selectedColumn = new PaletteColumn(getName(), getRows());

        // Each value specified in the model will go into either the selected or available
        // lists.

        IPropertySelectionModel model = getModel();

        int count = model.getOptionCount();

        for (int i = 0; i < count; i++)
        {
            Object optionValue = model.getOption(i);

            PaletteOption o = new PaletteOption(model.getValue(i), model.getLabel(i));

            int index = selected.indexOf(optionValue);
            boolean isSelected = index >= 0;

            if (sortUser && isSelected)
View Full Code Here
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.