使用easyUI新增查詢功能在datagrid

2021-09-06 05:39:49 字數 1529 閱讀 1230

檢視 demo

建立 datagrid

建立 datagrid和分頁功能然後新增工具欄到其中.

item id

product id

list price

unit cost

attribute

stauts

工具欄定義如下:

item id:

product id:

search

當使用者輸入查詢值和按下查詢按鈕'

dosearch'函式將被呼叫.

function dosearch());  

}

以上**我們呼叫了

load方法去載入新的datagrid資料,我們需要傳入itemid和productid引數到伺服器:

伺服器端**

include 'conn.php';  

$page = isset($_post['page']) ? intval($_post['page']) : 1;

$rows = isset($_post['rows']) ? intval($_post['rows']) : 10;

$itemid = isset($_post['itemid']) ? mysql_real_escape_string($_post['itemid']) : '';

$productid = isset($_post['productid']) ? mysql_real_escape_string($_post['productid']) : '';

$offset = ($page-1)*$rows;

$result = array();

$where = "itemid like '$itemid%' and productid like '$productid%'";

$rs = mysql_query("select count(*) from item where " . $where);

$row = mysql_fetch_row($rs);

$result["total"] = $row[0];

$rs = mysql_query("select * from item where " . $where . " limit $offset,$rows");

$items = array();

while($row = mysql_fetch_object($rs))

$result["rows"] = $items;

echo json_encode($result);

easyui-datagrid-demo.zip

SQL INSERT,批量新增 查詢新增

新增多條記錄 insert into tablename col1,col2,col3 select 3,4,5 union allselect 6,7,8 從另外的一張表中讀取多條資料新增到新錶中 insert into tablename col1,col2,col3 select a,b,c ...

新增查詢刪除資料

package demo1 leo description 暫無 date created in 2020 11 27 18 03 public class mylist public mylist object element get set方法 public object getelement ...

鍊錶的新增,查詢,刪除

include include struct node 結點結構體 struct node head null 無結點時指向空 struct node tail null 頭尾指標 建立鍊錶,包括尾新增和頭新增 void addtail int data else tail sta 兩者的結構體是相...