Wiki source code of Live Table component

Version 122.1 by Oana Florea on 2009/09/24

Hide last authors
ElenaOanaTabaranu 58.1 1 = Live Table component =
fkorteby 27.1 2
ElenaOanaTabaranu 96.1 3 {{velocity filter="indent"}}
4 {{html clean="false" wiki="true"}}
ElenaOanaTabaranu 82.1 5 #warning("This document is a draft.")
fkorteby 27.1 6 #warning("This section documents a feature that is only available starting with XWiki Enterprise 1.9M2.")
Oana Florea 122.1 7 {{/html}}
8 {{/velocity}}
fkorteby 27.1 9
ElenaOanaTabaranu 68.1 10 {{toc start=2 depth=6 numbered=false scope=page /}}
fkorteby 27.1 11
ElenaOanaTabaranu 58.1 12 == Summary ==
fkorteby 27.1 13
ElenaOanaTabaranu 72.1 14 The **"Live Table"** component is a dynamic table loading data lazily using ajax requests as the user browse the table, in order to scale easily the display of very large amounts of data. Users can browse the table thanks to a pagination system. Filters on columns are available to search for specific entries. Columns can be made sortable in both direction. For a demonstration of the main capabilities of the live table component check out this [[video>>http://vimeo.com/4474332]].
ElenaOanaTabaranu 65.1 15
ElenaOanaTabaranu 58.1 16 == How to use ==
fkorteby 27.1 17
ElenaOanaTabaranu 58.1 18 The Live Table component is made available in several ways to [[Applications>>code:Applications.WebHome]] developers and developers of the [[XWiki platform and products>>dev:Main.WebHome]], depending on their specific needs. The simplest, and most of the times preferred, way to embed a Live Table component is to use the <tt>livetable</tt> velocity macro, available in all pages of your wiki. With only one call to this macro, you will be able to display a live table of the data of your choice! For more specific needs, in the cases you need more control on the table behavior, or to build another component on top of the live table, it is possible to instantiate the live table from JavaScript. In this case, you, as opposed to the velocity macro, you will need to construct the HTML elements the JavaScript component expects yourself, either from JavaScript, either writing the [[HTML directly in your wiki page>>platform:Main.XWikiSyntax]]
fkorteby 27.1 19
ElenaOanaTabaranu 72.1 20 === Using the Velocity livetable macro ===
fkorteby 27.1 21
ElenaOanaTabaranu 58.1 22 Please refer [[Live Table Macro>>code:Macros.LiveTableMacro]] reference.
fkorteby 27.1 23
ElenaOanaTabaranu 58.1 24 === HTML + JavaScript ===
fkorteby 27.1 25
ElenaOanaTabaranu 115.1 26 This is a dynamic component which must me used carefully because of performance issues. The HTML content of the Live Table is automatically updated using Javascript and [[JSON>>http://www.json.org]] code generated with the [[Live Table Macro>>code:Macros.LiveTableMacro]].
ElenaOanaTabaranu 120.1 27 The Live Table component is build using the Prototype library as a class representing an AJAX-populated live table. The default variable name generated in XWiki Enterprise is **ta** and you can use it, for example to manipulate the display of the component's rows by calling <tt>ta.showRows()</tt>.
fkorteby 27.1 28
ElenaOanaTabaranu 117.1 29 For more details, check the Javascript file **livetable.js** on your wiki at **{{{http://localhost:8080/xwiki/bin/skin/resources/js/xwiki/table/livetable.js}}}**.
ElenaOanaTabaranu 115.1 30
ElenaOanaTabaranu 58.1 31 === Example ===
Oana Florea 122.1 32 {{velocity filter="indent"}}
33 {{html clean="false" wiki="true"}}
ElenaOanaTabaranu 30.1 34
ElenaOanaTabaranu 104.1 35 #warning("You need the Ratings plugin in your wiki to make the most of the example below.")
Oana Florea 122.1 36 {{/html}}
37 {{/velocity}}
ElenaOanaTabaranu 103.1 38
ElenaOanaTabaranu 30.1 39 The Live Table component could be extended with a special column containing the ratings of some documents from the wiki.
ElenaOanaTabaranu 58.1 40 The first step would be to generate the JSON code of the column we want to add. In order to achieve this goal we need to modify the result page of the velocity live table macro with our custom page **TutorialsCode.LiveTableRatings**:
ElenaOanaTabaranu 32.1 41
ElenaOanaTabaranu 121.1 42 {{code}}
Oana Florea 122.1 43
ElenaOanaTabaranu 55.1 44 #set($collist = ["doc.name", "_ratings", "doc.date", "doc.author", "_actions"])
ElenaOanaTabaranu 52.1 45
ElenaOanaTabaranu 57.1 46 #set($colprops = {
ElenaOanaTabaranu 32.1 47 "doc.name" : { "type" : "text" , "size" : 30, "sortable":true, "filterable":true},
48 "_ratings" : { "sortable":false},
49 "doc.date" : { "type" : "date" },
50 "doc.author" : { "type" : "text", "link" : "author"},
ElenaOanaTabaranu 51.1 51 "_actions" : { "actions": ["copy","delete","rename","rights"]}
ElenaOanaTabaranu 57.1 52 })
53 #set($options = { "resultPage":"TutorialsCode.LiveTableRatings",
54 "tagCloud" : true,
55 "translationPrefix" : "xe.index.",
56 "rowCount": 10 })
57 #set($ok = $xwiki.ssx.use("TutorialsCode.LiveTableRatings"))
58 #set($ok = $xwiki.jsx.use("TutorialsCode.LiveTableRatings"))
Oana Florea 122.1 59 #livetable("alldocs" $collist $colprops $options)
ElenaOanaTabaranu 58.1 60 {{/code}}
ElenaOanaTabaranu 32.1 61
ElenaOanaTabaranu 85.1 62 If we want to display the rated documents from a certain space, e.g. **Tutorials**, the last parameter of the <tt>#gridresultwithfilter</tt> must contain the query we need.
ElenaOanaTabaranu 34.1 63
ElenaOanaTabaranu 97.1 64 {{code}}
ElenaOanaTabaranu 34.1 65 #includeMacros("TutorialsCode.LiveTableResultsMacros")
ElenaOanaTabaranu 59.1 66
ElenaOanaTabaranu 34.1 67 #gridresultwithfilter("" $request.collist.split(",") "" "doc.space='Tutorials' and doc.name<>'WebHome' and doc.name<>'WebPreferences'")
ElenaOanaTabaranu 59.1 68
ElenaOanaTabaranu 60.1 69 {{/code}}
ElenaOanaTabaranu 73.1 70
ElenaOanaTabaranu 106.1 71 The page at **TutorialsCode.LiveTableResultsMacros** should contain a copy of the default code (the page is located at **XWiki.LiveTableResultsMacro**) for the live table result page. The next step implies extracting the rating information from the wiki pages located the **Tutorials** space. We add a new velocity macro which will test the presence of the rating object with class **XWiki.AverageRatingsClass** and extract the rating value.
ElenaOanaTabaranu 90.1 72
ElenaOanaTabaranu 97.1 73 {{code}}
ElenaOanaTabaranu 81.1 74 ##
75 ## list ratings
76 ##
ElenaOanaTabaranu 73.1 77 #macro(grid_ratings $udoc)
78 #set($ratings = "")
79 #set($ratingObj = "")
80 #set($ratingObj = $udoc.getObject("XWiki.AverageRatingsClass"))
81 #if("$!ratingObj" != "")
82 #set($ratings = $ratingObj.get("averagevote"))
83 #end
84 #end
ElenaOanaTabaranu 74.1 85 {{/code}}
ElenaOanaTabaranu 90.1 86
ElenaOanaTabaranu 78.1 87 The continue our extension of this component, we need to add a test for the presence of our custom column to call the <tt>grid_ratings</tt> macro when generating the JSON:
ElenaOanaTabaranu 96.1 88 {{/html}}
89 {{/velocity}}
ElenaOanaTabaranu 93.1 90
ElenaOanaTabaranu 97.1 91 {{code}}
ElenaOanaTabaranu 75.1 92 ...
ElenaOanaTabaranu 79.1 93 #elseif($colname=="_images") ,
94 #grid_photolist($udoc)
95 "${colname}" : "${photolist}"
ElenaOanaTabaranu 75.1 96 #elseif($colname=="_ratings"),
97 #grid_ratings($udoc)
98 "${colname}" : "${ratings}"
ElenaOanaTabaranu 79.1 99 #else ,
ElenaOanaTabaranu 75.1 100 ...
101 {{/code}}
ElenaOanaTabaranu 87.1 102
ElenaOanaTabaranu 80.1 103 #info("Firebug can be a useful tool when testing the JSON code generated.")
ElenaOanaTabaranu 87.1 104
ElenaOanaTabaranu 107.1 105 Transforming the rating information to a nice star display requires using Javascript to replace the content of that column with the proper HTML. Attach the image below to your **TutorialsCode.LiveTableRatings** page to change the default white background when hovering on the stars.
ElenaOanaTabaranu 75.1 106
ElenaOanaTabaranu 109.1 107 [[image:star-table.gif||style="margin-right: 1em;"]]
ElenaOanaTabaranu 108.1 108
109
ElenaOanaTabaranu 107.1 110 Add an on-demand Javascript Extension with a content which can be parsed and use the code below to enrich your component:
111
ElenaOanaTabaranu 98.1 112 {{code}}
113 /** Display ratings in the live table on row event */
114 document.observe("xwiki:livetable:newrow", function(ev) {
115 $$('._ratings').each(function (el) {
116 // update content
117 var avgvote = 0.0;
118 if (el.innerHTML !== "") {
119 avgvote = parseFloat(el.innerHTML);
120 }
121 var wstyle = 0;
122 if (avgvote > 0) {
123 wstyle = avgvote * 20;
124 el.innerHTML="<div class='avg-rating'><div class='rating-stars'><ul class='small-star-rating'><li style='width: " + wstyle +"%;' class='current-rating'/><li><a class='one-star' href='#' onclick='return false;'>1</a></li><li><a class='two-stars' href='#' onclick='return false;'>2</a></li><li><a class='three-stars' href='#' onclick='return false;'>3</a></li><li><a class='four-stars' href='#' onclick='return false;'>4</a></li><li><a class='five-stars' href='#' onclick='return false;'>5</a></li></ul></div></div>";
125 } else if(el.innerHTML === ""){
126 el.innerHTML="<div class='avg-rating'><div class='rating-stars'><ul class='small-star-rating'><li style='width: 0%;' class='current-rating'/><li><a class='one-star' href='#' onclick='return false;'>1</a></li> <li><a class='two-stars' href='#' onclick='return false;'>2</a></li><li><a class='three-stars' href='#' onclick='return false;'>3</a></li><li><a class='four-stars' href='#' onclick='return false;'>4</a></li><li><a class='five-stars' href='#' onclick='return false;'>5</a></li></ul></div></div>";
127 }
128 });
129 document.fire("xwiki:livetable:ready", {
130 });
131 });
132 /** Update ratings images on hover event aka mouse over and mouse out.*/
133 document.observe("xwiki:livetable:ready", function(levent) {
134 $$('.xwiki-livetable-display-body tr').each(function (elem) {
135 Event.observe(elem, 'mouseover', function (ev) {
136 var ratings = elem.down('._ratings');
137 if(ratings) {
138 // update default white stars background
139 var elt = ratings.down(2);
140 elt.setStyle({
141 backgroundImage: 'url($xwiki.getDocument("TutorialsCode.LiveTableRatings").getAttachmentURL("star-table.gif"))',
142 backgroundPosition: '0% 0%'
143 });
144 // update votes background
145 elt = ratings.down(3);
146 elt.setStyle({
147 backgroundImage: 'url($xwiki.getDocument("TutorialsCode.LiveTableRatings").getAttachmentURL("star-table.gif"))',
148 backgroundPosition: '0% 50%'
149 });
150 }
151 });
152 Event.observe(elem, 'mouseout', function (ev) {
153 var ratings = elem.down('._ratings');
154 if(ratings) {
155 // restore default white stars background
156 var elt = ratings.down(2);
157 elt.setStyle({
158 backgroundImage: 'url($xwiki.getDocument("XWiki.Ratings").getAttachmentURL("star.gif"))',
159 backgroundPosition: '0% 0%'
160 });
161 // restore votes background
162 elt = elem.down('._ratings').down(3);
163 elt.setStyle({
164 backgroundImage: 'url($xwiki.getDocument("XWiki.Ratings").getAttachmentURL("star.gif"))',
165 backgroundPosition: '0% 50%'
166 });
167 }
168 });
ElenaOanaTabaranu 75.1 169
ElenaOanaTabaranu 98.1 170 });
171 });
172 {{/code}}
173
ElenaOanaTabaranu 110.1 174 Also, add some CSS in an on-demand Stylesheet extension with a content which can be parsed to polish the custom column display:
Vincent Massol 121.2 175
ElenaOanaTabaranu 98.1 176 {{code}}
177 /* ratings for live table */
178 .small-star-rating,
179 .small-star-rating .current-rating {
180 background: url($xwiki.getDocument("XWiki.Ratings").getAttachmentURL("star.gif")) left -1000px repeat-x;
181 }
182 .small-star-rating{
183 position:relative;
184 width:125px;
185 height:25px;
186 overflow:hidden;
187 list-style:none;
188 margin:0px !important;
189 padding:0px !important;
190 background-position: left top;
191 }
192 .small-star-rating li{
193 display: inline;
194 }
195 .small-star-rating a,
196 .small-star-rating .current-rating{
197 position:absolute;
198 top:0;
199 left:0;
200 text-indent:-1000em;
201 height:25px;
202 line-height:25px;
203 outline:none;
204 overflow:hidden;
205 border: none;
206 }
207 .small-star-rating .current-rating{
208 z-index:1;
209 background-position: left center;
210 }
211 .small-star-rating:hover,
212 .small-star-rating:active,
213 .small-star-rating:focus {
214 background-image: url($xwiki.getDocument("TutorialsCode.LiveTableRatings").getAttachmentURL("star-table.gif"));
215 background-repeat: repeat-x;
216 background-position: top left;
217 }
218 .small-star-rating a.one-star{
219 width:20%;
220 z-index:6;
221 }
222 .small-star-rating a.two-stars{
223 width:40%;
224 z-index:5;
225 }
226 .small-star-rating a.three-stars{
227 width:60%;
228 z-index:4;
229 }
230 .small-star-rating a.four-stars{
231 width:80%;
232 z-index:3;
233 }
234 .small-star-rating a.five-stars{
235 width:100%;
236 z-index:2;
237 }
238 .rating-stars {
239 display: inline;
240 float: left;
241 clear: none;
242 }
243 {{/code}}
ElenaOanaTabaranu 111.1 244
245 The final result should look like this:
ElenaOanaTabaranu 114.1 246
ElenaOanaTabaranu 113.1 247 [[image:livetabel.png||style="margin-right: 1em;"]]
ElenaOanaTabaranu 111.1 248
249

Get Connected