forked from apache/struts
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WW-4991 Not existing property in listValueKey throws exception
- Loading branch information
1 parent
48fe791
commit f6e0cde
Showing
6 changed files
with
56 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 8 additions & 0 deletions
8
core/src/test/resources/org/apache/struts2/views/jsp/ui/Radio-8.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<tr> | ||
<td class="tdLabel"><label for="myname" class="label">mylabel:</label></td> | ||
<td class="tdInput"> | ||
<input type="radio" name="myname" id="mynamea" value="a"/><label for="mynamea">notExistingProperty</label> | ||
<input type="radio" name="myname" id="mynameb" value="b"/><label for="mynameb">notExistingProperty</label> | ||
<input type="radio" name="myname" id="mynamec" value="c"/><label for="mynamec">notExistingProperty</label> | ||
</td> | ||
</tr> |
10 changes: 10 additions & 0 deletions
10
core/src/test/resources/org/apache/struts2/views/jsp/ui/Select-16.txt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<tr> | ||
<td class="tdLabel"><label for="foo" class="label">mylabel:</label></td> | ||
<td class="tdInput"> | ||
<select name="foo" id="foo"> | ||
<option value="a">notExistingProperty</option> | ||
<option value="b">notExistingProperty</option> | ||
<option value="c">notExistingProperty</option> | ||
</select> | ||
</td> | ||
</tr> |