ItemShowOrder - HendrickxJorn/Gobln.Pager.Mvc GitHub Wiki

#ItemShowOrder

ItemShowOrder is used to show the items of the pager. By changing the array, you can rearange the order of the pager and leave out or add items.

ItemShow Description Bootstrap example
FirstItem Display the first item Can not display image
PreviousItem Display the previous item Can not display image
JumpPreviousItem Display the jump previous item Can not display image
PagesItems Display the an series of number item Can not display image
JumpNextItem Display the jump next item Can not display image
NextItem Display the next item Can not display image
LastItem Display the last item Can not display image
PagesItemsRange Display the series of range number item Can not display image

##Examples


    ItemShowOrder = new ItemShow[] { ItemShow.FirstItem, ItemShow.LastItem }

Can not display image


    ItemShowOrder = new ItemShow[] { ItemShow.FirstItem, ItemShow.PagesItemsRange, ItemShow.LastItem }

Can not display image


    ItemShowOrder = new ItemShow[] { ItemShow.PagesItems, ItemShow.JumpPreviousItem, ItemShow.NextItem, ItemShow.FirstItem, ItemShow.LastItem }

Can not display image


    ItemShowOrder = new ItemShow[] { ItemShow.FirstItem, ItemShow.LastItem, ItemShow.PagesItemsRange, ItemShow.FirstItem, ItemShow.LastItem }

Can not display image