我做了一個帶底部工具欄的extjs網格來創建分頁行爲,但它不工作,我不知道問題出在哪裏,我已經用本地數據完成了,但是當我使用數據庫時它不起作用,它會一次顯示所有數據。
下面的代碼:
尋呼不工作,Extjs網格
Ext.require([ 'Ext.data.*', 'Ext.grid.*' ]);
Ext.onReady(function() {
var categoriesStore = Ext.create('Ext.data.JsonStore', {
autoLoad: true,
pageSize : 10,
proxy: {
type: 'ajax',
url: 'GridDataBase/categories.php',
reader: {
type: 'json',
totalProperty: 'total',
root: 'categories',
idProperty: 'name'
}
},
fields : ['id','name']
});
var panelOfData = Ext.create('Ext.grid.GridPanel',{
store : categoriesStore,
columns : [ {
id : 'id',
header : "Id",
width : 20,
sortable : true,
dataIndex : 'id'
}, {
id : 'name',
header : "Category Name",
width : 75,
sortable : true,
dataIndex : 'name'
} ],
//stripeRows : true,
//paging bar on the bottom
bbar: Ext.create('Ext.PagingToolbar', {
store: categoriesStore,
displayInfo: true,
displayMsg: '{0} - {1} of {2}',
emptyMsg: "No categories to display"
}),
autoExpandColumn : 'name',
height : 350,
width : 600,
renderTo : 'grid-ex',
title : 'Categories'
});
categoriesStore.loadPage(1);
console.log(categoriesStore.count()); // the log here shows 0
});
這裏的PHP文件:
function GetCategories() {
$query = "SELECT id, name FROM categorie";
$categories = array("categories" => array());
@mysql_connect("localhost","superuser","SS4") or die();
mysql_select_db("dbz"); !mysql_error() or die();
$result = mysql_query($query);
$num = mysql_num_rows($result);
$i = 0;
while ($row = mysql_fetch_assoc($result)) {
$categories["categories"][$i] = $row;
$i++;
}
return json_encode($categories);
}
echo GetCategories();
你是否在'categories.php'中實現了分頁?尋呼的功能是將尋呼相關參數傳遞給你的php腳本,但服務器端的實現在你手中。 – Krzysztof
頁面只提供一個json輸出,數據來自mysql數據庫。 –