waikimmediA3
New Member
I have sorted columns in displaytag using "sortable=true"....But I want to display the sorting icons at the extreme right of the column...How can I do this?Here I have mentioned only one column for your reference...\[code\]<display:column property="issuerName" scope="col" sortable="true" title="${issuerName}" headerClass="hixTableHeader" class="displayTagtd" /> \[/code\]CSS code :\[code\]th.sortable a { background-image: url(../images/common/header/arrow_off.png); background-repeat: no-repeat; background-position:right; text-decoration: none; padding-right:25px; padding-left: 25px;}th.order1 a{ background-image: url(../images/common/header/arrow_down.png); background-position:right; background-repeat: no-repeat; text-decoration: none; padding-right:25px; padding-left: 25px;}th.order2 a{ background-image: url(../images/common/header/arrow_up.png); background-repeat: no-repeat; text-decoration: none; background-position:right; padding-right:25px; padding-left: 25px;}\[/code\]