Hello,
The toolbar doesn't resize on iPads, making usage very difficult. Can I resize the toolbar buttons? I see that resizing text can happen, but that doesn't fix my problem….
Thanks!
1 Answers
Hello,
To make the clickable area larger you can apply CSS spacing. e.g.
<style>
.ui-jqgrid .ui-jqgrid-pager .ui-pg-div span.ui-icon {
margin: 7px;
}
.ui-jqgrid .ui-jqgrid-pager {
height: 36px;
}
.ui-jqgrid .ui-jqgrid-pager .ui-pg-div {
line-height: 30px;
}
</style>
Elements can be inspected using firebug for further tweaking.
To make the Image larger, you will need to provide your own as they are taken from an image sprite of jqueryui (which is time taking work).
Regards,
Your Answer