diff options
-rw-r--r-- | uitest/src/com/vaadin/tests/components/grid/declarative/GridDeclarativeMultiSelect.java | 26 | ||||
-rw-r--r-- | uitest/src/com/vaadin/tests/components/grid/declarative/GridMultiSelect.html | 118 |
2 files changed, 144 insertions, 0 deletions
diff --git a/uitest/src/com/vaadin/tests/components/grid/declarative/GridDeclarativeMultiSelect.java b/uitest/src/com/vaadin/tests/components/grid/declarative/GridDeclarativeMultiSelect.java new file mode 100644 index 0000000000..83dbdf541e --- /dev/null +++ b/uitest/src/com/vaadin/tests/components/grid/declarative/GridDeclarativeMultiSelect.java @@ -0,0 +1,26 @@ +/* + * Copyright 2000-2014 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.tests.components.grid.declarative; + +import com.vaadin.annotations.Theme; +import com.vaadin.tests.components.DeclarativeTestUI; +import com.vaadin.tests.components.DeclarativeTestUI.DeclarativeUI; + +@Theme("valo") +@SuppressWarnings("serial") +@DeclarativeUI("GridMultiSelect.html") +public class GridDeclarativeMultiSelect extends DeclarativeTestUI { +} diff --git a/uitest/src/com/vaadin/tests/components/grid/declarative/GridMultiSelect.html b/uitest/src/com/vaadin/tests/components/grid/declarative/GridMultiSelect.html new file mode 100644 index 0000000000..b7b1fdaf60 --- /dev/null +++ b/uitest/src/com/vaadin/tests/components/grid/declarative/GridMultiSelect.html @@ -0,0 +1,118 @@ +<v-grid width='100%' height='100%' selection-mode='multi' editable='false'> +<table> + <colgroup> + <col /> + <col /> + <col /> + </colgroup> + <thead> + <tr> + <th>Description</th> + <th>Milestone</th> + <th>Status</th> + </tr> + </thead> + <tbody> + <tr> + <td>Issue #0</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #1</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #2</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #3</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #4</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #5</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #6</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #7</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #8</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #9</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #10</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #11</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #12</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #13</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #14</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #15</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #16</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #17</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #18</td> + <td>1.0</td> + <td>New</td> + </tr> + <tr> + <td>Issue #19</td> + <td>1.0</td> + <td>New</td> + </tr> + </tbody> +</table> +</v-grid> |