- 注册时间
- 2012-9-26
- 最后登录
- 2012-12-13
- 阅读权限
- 10
- 积分
- 195
- 精华
- 0
- 帖子
- 57
|
-
- function search() {
- var key = document.getElementById("key").value;
- grid.load({ key: key });
- }
复制代码 这里的 grid.load({ key: key });是根据key来查询的吧,能否有多个“key”,如下面的代码,怎么总是不能在datagrid中显示我所查询的数据呢,总是显示出来我所有的数据而不是我根据条件查询的数据
- function searchData() {
- var selectInfo = mini.get("cmb1").getValue();
- var key = mini.get("key").getValue();
- $.ajax({
- url: "yshyh.ashx?t=s&method=SearchInfo&key=" + key + "&selectInfo=" + selectInfo,
- success: function (text) {
- grid.load({ key: key, selectInfo: selectInfo });
- },
- error: function () {
- }
- });
- }
复制代码
|
|