順序付けされていないリストと順序付けられたリストのページネーションに最適なプラグインがあるかどうか誰かが知っているかどうか疑問に思っていました。簡単ですが高度にカスタマイズ可能なプラグインが欲しいです。誰かが素晴らしい提案があれば、私は以下のこのリンクを見つけました、誰かが以前に何かを使用したことがありますか?
http://www.jquery4u.com/plugins/10-jquery-pagination-plugins/
順序付けされていないリストと順序付けられたリストのページネーションに最適なプラグインがあるかどうか誰かが知っているかどうか疑問に思っていました。簡単ですが高度にカスタマイズ可能なプラグインが欲しいです。誰かが素晴らしい提案があれば、私は以下のこのリンクを見つけました、誰かが以前に何かを使用したことがありますか?
http://www.jquery4u.com/plugins/10-jquery-pagination-plugins/
これを試して
Int Icount = ds1.Tables[0].Rows.Count(Total no of records, this should be come from Database tables);
int startindexx = SIndex(here SIndex like a no of pages like 1,2,3,etc, it from your clicking pagination buttons);
int EndIndex = SIndex;
if (EndIndex == 1) { EndIndex = 0; }
if (startindexx > 1) {
startindexx = startindexx - 1;
startindexx = startindexx * 10;
startindexx = startindexx + 1;
EndIndex = EndIndex * 10;
}
else {
EndIndex = EndIndex + 10;
}
var Pages = 0; Pages = Icount / 10; var PagesReminder = Icount % 10;
Icount = ds1.Tables[0].Rows.Count;
int startindexx = Convert.ToInt32(SIndex);
int EndIndex = Convert.ToInt32(SIndex);
if (EndIndex == 1) {
EndIndex = 0;
}
if (startindexx > 1) {
startindexx = startindexx - 1;
startindexx = startindexx * 10;
startindexx = startindexx + 1;
EndIndex = EndIndex * 10;
}
else {
EndIndex = EndIndex + 10;
}
var Pages = 0; Pages = Icount / 10;
var PagesReminder = Icount % 10;
if (PagesReminder != 0) {
Pages = Pages + 1;
}