更改sharepoint 中分页控件的显示位置
<script language="JavaScript" type="text/javascript">
var topPagingCell = document.getElementById("topPagingCellWPQ2");
var bottomPagingCell = document.getElementById("bottomPagingCellWPQ2");
if (topPagingCell != null && bottomPagingCell != null)
{
topPagingCell.innerHTML = bottomPagingCell.innerHTML;
bottomPagingCell.align="left";
}
</script>