我试图将其他值(作为过滤器)传递给jquery bootgrid。在我的表单中,我有两个日期范围,每次日期更改时我都需要刷新网格数据。
处理程序 requestHandler 和(已废弃)帖子允许我传递给服务器其他params尊重标准
但是当我发布请求时,我无法添加自定义参数。使用firebug,我只能看到标准参数
current=1
rowCount=10
searchPhrase=
请帮助我!!
在我的完整HTML代码下面
<table id="grid-data" class="table table-condensed table-hover table-striped" data-toggle="bootgrid" data-ajax="true" data-url="HelpDesk/server.php">
<thead>
<tr>
<th data-column-id="ticket_no" data-type="string" data-identifier="true">ticket_no</th>
<th data-column-id="title">title</th>
<th data-column-id="parent_id" data-type="string">parent_id</th>
<th data-column-id="contact_id" data-type="string">contact_id</th>
<th data-column-id="status">status</th>
<th data-column-id="priority" data-type="string">priority</th>
<th data-column-id="smownerid" data-type="string">smownerid</th>
</tr>
</thead>
</table>
和我的js / jquery代码
<!-- now write the script specific for this grid -->
<script language="javascript">
jQuery( document ).ready(function() {
var grid = $("#grid-data").bootgrid({
ajax: true,
url: "HelpDesk/server.php",
//requestHandler
//Transforms the JSON request object in what ever is needed on the server-side implementation.
// Default value is function (request) { return request; }.
requestHandler: function(request)
{
console.log("requestHandler - nevel called");
console.log(request);
return request;
}/*,
post: function ()
{
console.log("post - nevel called");
return {datefrom:'aaaaaaaaa',dateto:'vvvvvvvvvv'};
}*/
});
$('input[name="srch"]').click(function(){
$("#grid-data").bootgrid("reload");
});
});
</script>
答案 0 :(得分:3)
要将一些其他信息传递到服务器,您只需将这些参数添加到request
对象并将其返回。例如:
requestHandler: function (request) {
request.myParam1 = "test";
request.oneMoreMyParam = "test again";
return request;
}
在服务器端,您将收到以下内容:
current = 1,
rowCount = 15,
searchPhrase = "",
myParam1 = "test",
oneMoreMyParam = "test again"
但你写道,你的requestHandler
从未被调用过,对吧?它很奇怪。必须在"reload"
事件中调用它。我也用这个功能。另外,我不会像<table>
那样写data-ajax="true" data-url="..."
的属性并使用:
<table id="grid-data" class="table table-condensed table-hover table-striped">
<thead>...</thead>
<tbody>...</tbody>
</table>
<script type="text/javascript">
$("#grid-data").bootgrid({
ajax: true,
requestHandler: function (request) {
request.myParam= $("#some-input").val();
return request;
},
url: "..."
});
$("#some-button").on("click", function () {
$("#grid-data").bootgrid("reload");
});
</script>
一切都很好。
答案 1 :(得分:0)
对于任何来这里寻找答案的人。检查是否在表元素上设置了data-toggle="bootgrid"
。这似乎覆盖了从js文件初始化的手动bootgrid。删除它对我来说是个窍门。希望这会有所帮助。