diff options
author | Henrik Paul <henrik@vaadin.com> | 2015-02-05 23:50:31 +0200 |
---|---|---|
committer | Leif Åstrand <leif@vaadin.com> | 2015-02-06 11:19:17 +0200 |
commit | 0e141e31bb30a0ab6726129f3c9fa892c92573e4 (patch) | |
tree | 672975bd0671b06d1498e5ce5f984e7d30179ef7 /shared/src | |
parent | 0c82dad0ab225aeb9920b2e5c6f061da871bea66 (diff) | |
download | vaadin-framework-0e141e31bb30a0ab6726129f3c9fa892c92573e4.tar.gz vaadin-framework-0e141e31bb30a0ab6726129f3c9fa892c92573e4.zip |
Highlights erroneous cells in Grid editor (#16575)
Change-Id: Ie1f9d738db7a03ddb01b968782ad5e4877af1d7e
Diffstat (limited to 'shared/src')
-rw-r--r-- | shared/src/com/vaadin/shared/ui/grid/EditorClientRpc.java | 7 |
1 files changed, 6 insertions, 1 deletions
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 * <code>true</code> iff the save action was successful + * @param errorColumnsIds + * a list of column keys that should get error markers, or + * <code>null</code> if there should be no error markers */ - void confirmSave(boolean saveSucceeded); + void confirmSave(boolean saveSucceeded, List<String> errorColumnsIds); } |