How can I set postData._search to true in the request in jqGrid?(如何在 jqGrid 的请求中将 postData._search 设置为 true?)
问题描述
虽然我已经能够以编程方式添加自己的帖子数据,但我似乎无法弄清楚如何让此代码在请求中发送 _search: true
.
While I've been able to add my own post data programmatically, I cannot seem to figure out how to get this code to send _search: true
in the request.
var data = grid.jqGrid("getGridParam", "postData");
data._search = true;
data.searchString = id.toString();
data.searchOper = "eq";
data.searchField = "userid";
grid.jqGrid("setGridParam", { "postData": data });
grid.trigger("reloadGrid");
这些字段已正确添加,但在某处 _search 似乎设置为 false,因为每个请求都将其设置为 false.我还需要做些什么才能让它真实"吗?我正在运行工具栏搜索,但大多数时候调用此代码时没有输入任何内容,并且我的服务器上的大量实用程序代码会在处理搜索之前检查 _search.
The fields are added correctly, but somewhere along the way _search appears to be set to false, because every request has it set to false. Is there some other thing I have to do to have it "true"? I'm running a toolbar search, but most of the time when this code will be called there's nothing entered, and a decent chunk of utility code on my server checks _search before handling searches.
推荐答案
还有一个额外的参数,search
,需要设置它来启动搜索.postData
的 _search
参数不需要显式设置.我建议查找一些旧答案,您可以在其中找到如何使用搜索的示例:
There is an additional parameter, search
, which need be set to initiate the searching. The _search
parameter of postData
need not be set explicitly. I recommend to look up some old answers where you find examples how to work with searching:
- jqGrid 客户端搜索
- jqGrid:使用多种方法过滤数据
- jqGrid 清除搜索条件
这篇关于如何在 jqGrid 的请求中将 postData._search 设置为 true?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何在 jqGrid 的请求中将 postData._search 设置为 true?
基础教程推荐
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- 直接将值设置为滑块 2022-01-01
- Chart.js 在线性图表上拖动点 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01