ASP.NET MVCで剣道グリッドフィルタをアクションに送信するにはどうすればよいですか?
私はこの構造を使用していますが、機能していますが、コントローラーで送信された値を取得できません。アクションのパラメーター「モデル」が空です。
$('#btn-print').click(function () {
filter = $('#trips').data('kendoGrid').dataSource.filter();
$.ajax({
type: 'post',
url: '@Url.Action("Print", "Trips")',
//dataType: 'json',
data: filter,
success: function (d) {
var win = window.open('about:blank');
with (win.document) {
open();
write(d);
close();
}
//alert('print click.');
}
})
});
ASP.NET アクション
[HttpPost]
public ActionResult Print(object model)
{
var r = Request;
return View();
}
ありがとうございました。:)