Created
November 17, 2018 13:59
-
-
Save bdogan/c7db4de4814924847853dff3c3c33315 to your computer and use it in GitHub Desktop.
Pagination const width
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Dim pLastPage : pLastPage = gelen_sayfa_sayisi | |
Dim oCurrentPage : oCurrentPage = gelen_secili_sayfa | |
Dim oPagesWidth, oPageCursor : oPagesWidth = 4 : oPageCursor = 1 | |
Dim oPageStart : oPageStart = oCurrentPage - oPagesWidth | |
Dim oPageEnd : oPageEnd = oCurrentPage + oPagesWidth | |
If (oPageStart <= 0) Then oPageEnd = oPageEnd - (oPageStart - 1) : oPageStart = 1 | |
If (oPageEnd > pLastPage) Then oPageStart = oPageStart - (oPageEnd - pLastPage) : oPageEnd = pLastPage |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment