My solution was to create the following Css
<style type="text/css">
.tallPager {
height: 100px;
word-wrap: break-word;
text-align:left;
}
</style>
and apply it to the Paging property
<Behaviors>
<ig:Paging PageSize="25" PagerMode="Numeric" EnableInheritance="True"
PagerCssClass="tallPager" />
etc...
The following shows the pager section for a different table, with the PagerCssClass ="tallPager"
Note: Word wraps can occur in the middle of a page number like 108:
Fortunately, I have a higher class of users and they were able to deal with that.
No comments:
Post a Comment