Toggle navigation
Toggle navigation
This project
Loading...
Sign in
data.posccaesar.org
/
npd
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Issues
1
Merge Requests
0
Wiki
Network
Create a new issue
Commits
Issue Boards
Authored by
Holger Knublauch
2012-03-23 21:03:01 +1000
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
c409933b1c376c000e94c7278e35a7458a083b28
c409933b
1 parent
cc17a15f
Made table alignment explicit
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
www.reportinghub.no/swp/DDRTable.uispin.html
www.reportinghub.no/swp/DDRTable.uispin.html
View file @
c409933
...
...
@@ -18,14 +18,14 @@
}"
>
<tr
class=
"ddrTR"
>
<ui:forEach
ui:resultSet=
"{= ?hrs }"
>
<th
class=
"ddrTH"
style=
"
{= IF(?left, 'text-align: left', ?none
) }"
<th
class=
"ddrTH"
style=
"
text-align: {= IF(?left, 'left', 'center'
) }"
><ui:parse
ui:str=
"{= html:encodeBRs(spif:replaceAll(?header, ' ', ' ')) }"
/></th>
</ui:forEach>
</tr>
<ui:forEach
ui:resultSet=
"{# SELECT ?row ?rowIndex WHERE { ?rs spr:rowIndices ?rowIndex } }"
>
<tr
class=
"ddrTR"
>
<ui:forEach
ui:resultSet=
"{# SELECT ?cell ?colIndex WHERE { (?rs ?rowIndex) spr:rowCells (?cell ?colIndex) } }"
>
<td
class=
"ddrTD"
style=
"
{= IF(spr:cell(?hrs, ?colIndex, 1), 'text-align: left', 'text-align:
center') }"
>
{= ?cell }
</td>
<td
class=
"ddrTD"
style=
"
text-align: {= IF(spr:cell(?hrs, ?colIndex, 1), 'left', '
center') }"
>
{= ?cell }
</td>
</ui:forEach>
</tr>
</ui:forEach>
...
...
Please
register
or
login
to post a comment