1 |
| |
2 |
| |
3 |
| |
4 |
| |
5 |
| |
6 |
| |
7 |
| |
8 |
| |
9 |
| |
10 |
| |
11 |
| |
12 |
| |
13 |
| |
14 |
| |
15 |
| package org.apache.tapestry.contrib.form; |
16 |
| |
17 |
| import org.apache.tapestry.IMarkupWriter; |
18 |
| import org.apache.tapestry.IRequestCycle; |
19 |
| import org.apache.tapestry.form.IPropertySelectionModel; |
20 |
| |
21 |
| |
22 |
| |
23 |
| |
24 |
| |
25 |
| |
26 |
| |
27 |
| |
28 |
| |
29 |
| public class CheckBoxMultiplePropertySelectionRenderer |
30 |
| implements IMultiplePropertySelectionRenderer |
31 |
| { |
32 |
| |
33 |
| |
34 |
| |
35 |
| |
36 |
| |
37 |
| |
38 |
0
| public void beginRender(
|
39 |
| MultiplePropertySelection component, |
40 |
| IMarkupWriter writer, |
41 |
| IRequestCycle cycle) |
42 |
| { |
43 |
0
| writer.begin("table");
|
44 |
0
| writer.attribute("border", 0);
|
45 |
0
| writer.attribute("cellpadding", 0);
|
46 |
0
| writer.attribute("cellspacing", 2);
|
47 |
| } |
48 |
| |
49 |
| |
50 |
| |
51 |
| |
52 |
| |
53 |
| |
54 |
0
| public void endRender(
|
55 |
| MultiplePropertySelection component, |
56 |
| IMarkupWriter writer, |
57 |
| IRequestCycle cycle) |
58 |
| { |
59 |
0
| writer.end();
|
60 |
| } |
61 |
| |
62 |
| |
63 |
| |
64 |
| |
65 |
| |
66 |
| |
67 |
| |
68 |
0
| public void renderOption(
|
69 |
| MultiplePropertySelection component, |
70 |
| IMarkupWriter writer, |
71 |
| IRequestCycle cycle, |
72 |
| IPropertySelectionModel model, |
73 |
| Object option, |
74 |
| int index, |
75 |
| boolean selected) |
76 |
| { |
77 |
0
| writer.begin("tr");
|
78 |
0
| writer.begin("td");
|
79 |
| |
80 |
0
| writer.beginEmpty("input");
|
81 |
0
| writer.attribute("type", "checkbox");
|
82 |
0
| writer.attribute("name", component.getName());
|
83 |
0
| writer.attribute("value", model.getValue(index));
|
84 |
| |
85 |
0
| if (component.isDisabled())
|
86 |
0
| writer.attribute("disabled", "disabled");
|
87 |
| |
88 |
0
| if (selected)
|
89 |
0
| writer.attribute("checked", "checked");
|
90 |
| |
91 |
0
| writer.end();
|
92 |
| |
93 |
0
| writer.println();
|
94 |
| |
95 |
0
| writer.begin("td");
|
96 |
0
| writer.print(model.getLabel(index));
|
97 |
0
| writer.end();
|
98 |
0
| writer.end();
|
99 |
| |
100 |
0
| writer.println();
|
101 |
| } |
102 |
| } |