How to perform ajax call and redirect to other page if clicked in free jqgrid column(如果在免费的 jqgrid 列中单击,如何执行 ajax 调用并重定向到其他页面)
问题描述
我正在寻找一种方法来执行添加到购物车"ajax 调用,以从单击的行中的其他列传递产品代码(行 ID)和数量,如果在 jqgrid 列中单击,则重定向到购物车页面.
I'm looking for a way to perform "Add to cart" ajax call to pass product code (row id) and quantity from other columns in clicked row and redirect to cart page if clicked in jqgrid column.
根据https://github.com/free-jqgrid/jqGrid/wiki/improvement-of-formatter:-"showlink"
showlink 格式化程序已改进,因此我尝试使用它.
showlink formatter is improved so I tried to use it.
我试过 colmodel
I tried colmodel
{"label":"Add to cart",
"name":"Addtocrt_addtocrt","search":false,"sortable":false,
"viewable":false,"formatter":"showlink","formatoptions":{"showAction":addToCartOnClick
}}
和方法
function addToCartOnClick(rowId, iRow, iCol, cellValue, e) {
var
$quantity = $('#' + $.jgrid.jqID(rowId) + '>td:nth-child(' + (iCol + 1) + ')'),
quantityVal;
if (iCol < 0) {
quantityVal = 1;
} else
if ($quantity.find('>input').length === 0) {
quantityVal = $quantity.text();
}
else {
quantityVal = $quantity.find('>input').val();
}
window.location = 'Store/AddToCart?' + $.param({
id: rowId,
quantity: quantityVal
});
}
在 jree jqgrid 中没有调用 addToCartOnClick.
addToCartOnClick is not called in jree jqgrid.
在 jqgrid 4.6 动态链接格式化程序中
In jqgrid 4.6 dynamiclink formatter
onClick=addToCartOnClick
按照 如果单击超链接,如何将数据从 jqgrid 行传递到 url
在免费的 jqgrid 中 addToCartOnClick 也不会从 dynamicLink 格式化程序中调用.
In free jqgrid addToCartOnClick is also not called from dynamicLink formatter.
如何在免费的jqgrid中调用方法并从点击的行中获取列值?
How to call method and get column values from clicked row in free jqgrid?
推荐答案
showAction
只能用于设置URL部分.如果您想使用该选项,则必须使用 javascript:
前缀(请参阅 答案) 来启动 addToCartOnClick
,它被定义为 global 函数.
showAction
can be used to set the part of URL only. It you want to use the option then you have to use javascript:
prefix (see the answer) to start addToCartOnClick
which mast be defined as the global function.
最好在 formatter: "showlink"
的 formatoptions
中使用新选项 onClick
.我在阅读您的之后直接对free jqGrid的代码进行了相应的修改问题.您应该从 GitHub 刷新您使用的源.现在你可以使用
The better would be to use new option onClick
in formatoptions
of formatter: "showlink"
. I made the corresponding changes of the code of free jqGrid directly after reading of your question. You should refresh the sources which you use from GitHub. Now you can use
{name: "Addtocrt_addtocrt", label: "Add to cart",
search: false, sortable: false, viewable: false,
formatter: "showlink",
formatoptions: {
onClick: function (options) {
// object options contains properties, which could be helpful
// iCol - index of the column in colModel
// iRow - index of the row
// rowid
// cm - element of colModel
// cmName - the same as cm.name
// cellValue: the text inside of `<a>`
// a - DOM element of clicked <a>
// event - Event object of the click event
location.href = "http://www.google.com/";
return false; // it's important to suppress the default a action
}
}}
这篇关于如果在免费的 jqgrid 列中单击,如何执行 ajax 调用并重定向到其他页面的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如果在免费的 jqgrid 列中单击,如何执行 ajax 调用并重定向到其他页面
基础教程推荐
- Chart.js 在线性图表上拖动点 2022-01-01
- 自定义 XMLHttpRequest.prototype.open 2022-01-01
- 我可以在浏览器中与Babel一起使用ES模块,而不捆绑我的代码吗? 2022-01-01
- Electron 将 Node.js 和 Chromium 上下文结合起来意味着 2022-01-01
- 如何使用JIT在顺风css中使用布局变体? 2022-01-01
- 如何使用TypeScrip将固定承诺数组中的项设置为可选 2022-01-01
- Vue 3 – <过渡>渲染不能动画的非元素根节点 2022-01-01
- html表格如何通过更改悬停边框来突出显示列? 2022-01-01
- 用于 Twitter 小部件宽度的 HTML/CSS 2022-01-01
- 直接将值设置为滑块 2022-01-01