I don't know how to do a right justified on the column using the display tag, can anyone show me how to accomplish this task.
TIA
Simple. in your jsp page:
<display:column class="numeric" ... />
in your css:
td.numeric { text-align: right; ... }
Ed!
Log in to post a comment.
I don't know how to do a right justified on the column using the display tag, can anyone show me how to accomplish this task.
TIA
Simple.
in your jsp page:
<display:column class="numeric" ... />
in your css:
td.numeric {
text-align: right;
...
}
Ed!