CI框架分頁類新增每頁條數選擇

2021-10-02 04:21:31 字數 601 閱讀 4689

ci框架分頁類如下圖所示,並沒有提供每頁條數的選擇,現在後台管理員說要加,你加還是不加呢……

加它!加完效果如下圖所示,用cookie儲存每頁條數,預設是每頁10條

config.php中新增分頁條數配置

//分頁記錄數

$config['page_size'] = array(10, 30, 50);

constants.php中新增常量名

//分頁條數cookie

define('pagesize', 'pagesize');

/system/libraries/pagenation.php中新增如下**(大約在577行後面,$output = ''; 下面)

//每頁記錄數

if(defined('pagesize'))else

} $output .= '條 ';

}

親測好用~

CI框架分頁類的使用 1

首先,要查詢資料庫,確定一共有多少條資料 this load model test model user this test model user select all pageall count user 總條數 pagenum 20 每頁顯示的條數 其次,進行config的配置 config t...

Extjs分頁新增每頁顯示條數

ext.paging 預設沒辦法設定每頁條數。如 圖 如果想讓使用者自己定義每頁條數 如 圖 網上找了半天竟然找不到相應的解決辦法,只能自 己去寫個控制項。hljs.component.hlpaging ext.extend ext.paging 條到 條記錄,共 條 emptymsg 無記錄 in...

CI框架增加條件搜尋,分頁

在網上找了半天,沒有乙個能寫明白的,到的怎麼使用帶條件分頁,我這裡用簡單說明實現它!1.使用ci框架分頁類,如果帶搜尋條件,首先要可以接收搜尋內容 cateid this input get post select cate searchkey this input get post searchk...