From 0e141e31bb30a0ab6726129f3c9fa892c92573e4 Mon Sep 17 00:00:00 2001 From: Henrik Paul Date: Thu, 5 Feb 2015 23:50:31 +0200 Subject: Highlights erroneous cells in Grid editor (#16575) Change-Id: Ie1f9d738db7a03ddb01b968782ad5e4877af1d7e --- shared/src/com/vaadin/shared/ui/grid/EditorClientRpc.java | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'shared/src') diff --git a/shared/src/com/vaadin/shared/ui/grid/EditorClientRpc.java b/shared/src/com/vaadin/shared/ui/grid/EditorClientRpc.java index 82e08999b4..6fb0b7a069 100644 --- a/shared/src/com/vaadin/shared/ui/grid/EditorClientRpc.java +++ b/shared/src/com/vaadin/shared/ui/grid/EditorClientRpc.java @@ -15,6 +15,8 @@ */ package com.vaadin.shared.ui.grid; +import java.util.List; + import com.vaadin.shared.communication.ClientRpc; /** @@ -56,6 +58,9 @@ public interface EditorClientRpc extends ClientRpc { * * @param saveSucceeded * true iff the save action was successful + * @param errorColumnsIds + * a list of column keys that should get error markers, or + * null if there should be no error markers */ - void confirmSave(boolean saveSucceeded); + void confirmSave(boolean saveSucceeded, List errorColumnsIds); } -- cgit v1.2.3