Skip to content
Snippets Groups Projects
Commit 377586d6 authored by Goik Martin's avatar Goik Martin
Browse files

Intermediate

parent 311116ea
No related branches found
No related tags found
No related merge requests found
......@@ -42,11 +42,13 @@ public class HelloUi extends UI {
@Override
public String getStyle(Table source, Object itemId, Object propertyId) {
int row = ((Integer)itemId).intValue();
if (2 == row % 3) {
return "sudokugroup";
} else {
return null;
if (null != propertyId) {
System.out.println(propertyId);
if (2 == row % 3) {
return "sudokugroup";
}
}
return null;
}
});
......@@ -64,6 +66,7 @@ public class HelloUi extends UI {
final SudokuBoard board = new SudokuBoard();
for (int y = 0; y < SudokuBoard.size; y++) {
//table.addContainerProperty ("Sum", Label.class, null);
final AbstractComponent tf[] = new AbstractComponent[SudokuBoard.size];
for (int x = 0; x < SudokuBoard.size; x++) {
final TextField t = new TextField();
......
../../../../webapp/VAADIN/themes/sudoku/styles.css
\ No newline at end of file
This diff is collapsed.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment