David Price

removed ui label from data in table writing

...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
22 <ui:forEach ui:resultSet="{# SELECT ?row ?rowIndex WHERE { ?rs spr:rowIndices ?rowIndex } }"> 22 <ui:forEach ui:resultSet="{# SELECT ?row ?rowIndex WHERE { ?rs spr:rowIndices ?rowIndex } }">
23 <tr class="ddrTR"> 23 <tr class="ddrTR">
24 <ui:forEach ui:resultSet="{# SELECT ?cell WHERE { (?rs ?rowIndex) spr:rowCells (?cell ?cellIndex) } }"> 24 <ui:forEach ui:resultSet="{# SELECT ?cell WHERE { (?rs ?rowIndex) spr:rowCells (?cell ?cellIndex) } }">
25 - <td class="ddrTD">{= ui:label(?cell) }</td> 25 + <td class="ddrTD">{= ?cell }</td>
26 </ui:forEach> 26 </ui:forEach>
27 </tr> 27 </tr>
28 </ui:forEach> 28 </ui:forEach>
......