pageLabelTemplate

A String template or a Function for controlling the page numbers displayed in the Pager.

    <div id="pager"></div>
    <script type="text/javascript">
    $(function () {
        $("#pager").shieldPager({
            totalItems: 99,
            messages: {
                pageLabelTemplate: function(num) {
                    return String.fromCharCode(64 + num);
                },
            }
        });
    });
    </script>