Browse Source

Add Grid declarative multi-select test UI

Change-Id: I4d59675d7ef71463aa2bc4a8de2fb567533af3e7
tags/7.5.0.beta1
patrik 9 years ago
parent
commit
ef807873ad

+ 26
- 0
uitest/src/com/vaadin/tests/components/grid/declarative/GridDeclarativeMultiSelect.java View File

@@ -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 {
}

+ 118
- 0
uitest/src/com/vaadin/tests/components/grid/declarative/GridMultiSelect.html View File

@@ -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>

Loading…
Cancel
Save