All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.vaadin.client.connectors.grid.AbstractGridRendererConnector Maven / Gradle / Ivy

Go to download

Vaadin is a web application framework for Rich Internet Applications (RIA). Vaadin enables easy development and maintenance of fast and secure rich web applications with a stunning look and feel and a wide browser support. It features a server-side architecture with the majority of the logic running on the server. Ajax technology is used at the browser-side to ensure a rich and interactive user experience.

There is a newer version: 8.27.1
Show newest version
/*
 * Copyright 2000-2016 Vaadin Ltd.
 *
 * Licensed 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 com.vaadin.client.connectors.grid;

import com.vaadin.client.ServerConnector;
import com.vaadin.client.connectors.AbstractRendererConnector;
import com.vaadin.client.widgets.Grid.Column;
import com.vaadin.shared.data.DataCommunicatorConstants;

import elemental.json.JsonObject;

/**
 * An abstract base class for renderer connectors. A renderer connector is used
 * to link a client-side {@link Renderer} to a server-side
 * {@link com.vaadin.client.renderers.Renderer Renderer}. As a connector, it can
 * use the regular Vaadin RPC and shared state mechanism to pass additional
 * state and information between the client and the server. This base class
 * itself only uses the basic {@link com.vaadin.shared.communication.SharedState
 * SharedState} and no RPC interfaces.
 *
 * @param 
 *            the presentation type of the renderer
 *
 * @since 8.0
 * @author Vaadin Ltd
 */
public abstract class AbstractGridRendererConnector
        extends AbstractRendererConnector {

    /**
     * Gets the row key for a row object.
     * 

* In case this renderer wants be able to identify a row in such a way that * the server also understands it, the row key is used for that. Rows are * identified by unified keys between the client and the server. * * @param row * the row object * @return the row key for the given row */ protected String getRowKey(JsonObject row) { return row.getString(DataCommunicatorConstants.KEY); } /** * Gets the column id for a column. *

* In case this renderer wants be able to identify a column in such a way * that the server also understands it, the column id is used for that. * Columns are identified by unified ids between the client and the server. * * @param column * the column object * @return the column id for the given column */ protected String getColumnId(Column column) { return getGridConnector().getColumnId(column); } /** * Gets the grid connector for this renderer connector. * * @return the parent grid connector. */ protected GridConnector getGridConnector() { final ServerConnector parent = getParent(); if (parent instanceof ColumnConnector) { final ServerConnector parentGrid = parent.getParent(); if (parentGrid instanceof GridConnector) { return (GridConnector) parentGrid; } } throw new IllegalStateException( "Renderers can only be used with a Grid."); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy