You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2014/11/04 01:34:11 UTC

[13/27] git commit: ISIS-537 Use disabled="disabled" in CollectionContentsAsSummary instead of disabled="true" to be HTML valid

ISIS-537 Use disabled="disabled" in CollectionContentsAsSummary instead of disabled="true" to be HTML valid


Project: http://git-wip-us.apache.org/repos/asf/isis/repo
Commit: http://git-wip-us.apache.org/repos/asf/isis/commit/430273c8
Tree: http://git-wip-us.apache.org/repos/asf/isis/tree/430273c8
Diff: http://git-wip-us.apache.org/repos/asf/isis/diff/430273c8

Branch: refs/heads/master
Commit: 430273c89a6848508f94e79593f9ec9a8987b822
Parents: f2993a0
Author: Martin Tzvetanov Grigorov <mg...@apache.org>
Authored: Sat Nov 1 15:27:34 2014 +0200
Committer: Martin Tzvetanov Grigorov <mg...@apache.org>
Committed: Sat Nov 1 15:27:34 2014 +0200

----------------------------------------------------------------------
 .../summary/CollectionContentsAsSummary.html                 | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/isis/blob/430273c8/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/summary/CollectionContentsAsSummary.html
----------------------------------------------------------------------
diff --git a/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/summary/CollectionContentsAsSummary.html b/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/summary/CollectionContentsAsSummary.html
index 7d4770d..1f55751 100644
--- a/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/summary/CollectionContentsAsSummary.html
+++ b/component/viewer/wicket/ui/src/main/java/org/apache/isis/viewer/wicket/ui/components/collectioncontents/summary/CollectionContentsAsSummary.html
@@ -31,10 +31,10 @@
                         <td class="aggregatesCell">
                             <table class="table table-condensed" style="background-color: inherit; margin-bottom: 0">
                                 <tr>
-                                    <td class="aggregateName">Sum:</td><td><input class="numberValue form-control" type="text" disabled="true" wicket:id="sum"/></td>
-                                    <td class="aggregateName">Avg:</td><td><input class="numberValue form-control" type="text" disabled="true" wicket:id="avg"/></td>
-                                    <td class="aggregateName">Min:</td><td><input class="numberValue form-control" type="text" disabled="true" wicket:id="min"/></td>
-                                    <td class="aggregateName">Max:</td><td><input class="numberValue form-control" type="text" disabled="true" wicket:id="max"/></td>
+                                    <td class="aggregateName">Sum:</td><td><input class="numberValue form-control" type="text" disabled="disabled" wicket:id="sum"/></td>
+                                    <td class="aggregateName">Avg:</td><td><input class="numberValue form-control" type="text" disabled="disabled" wicket:id="avg"/></td>
+                                    <td class="aggregateName">Min:</td><td><input class="numberValue form-control" type="text" disabled="disabled" wicket:id="min"/></td>
+                                    <td class="aggregateName">Max:</td><td><input class="numberValue form-control" type="text" disabled="disabled" wicket:id="max"/></td>
                                 </tr>
                             </table>
                         </td>