admin管理员组文章数量:1347712
Using: Using SortableRows and know when rows have been moved I have been able to call an alert after the modification of my row order.
How would I send this data to PHP/ call the editurl passing this data, similar to when adding or editing rows the editurl receives a $_POST['oper'] variable?
Currently have:
jQuery("#images_list").jqGrid('sortableRows',
options = { update : function(e,ui){alert("hi");} });
Using: Using SortableRows and know when rows have been moved I have been able to call an alert after the modification of my row order.
How would I send this data to PHP/ call the editurl passing this data, similar to when adding or editing rows the editurl receives a $_POST['oper'] variable?
Currently have:
jQuery("#images_list").jqGrid('sortableRows',
options = { update : function(e,ui){alert("hi");} });
Share
Improve this question
edited May 23, 2017 at 10:27
CommunityBot
11 silver badge
asked Jul 28, 2010 at 20:10
kilrizzykilrizzy
2,9436 gold badges40 silver badges63 bronze badges
1 Answer
Reset to default 12First of all the usage of update event should be like following:
jQuery("#images_list").jqGrid(
'sortableRows',
{ update : function(e,ui) {
alert("item with id=" + ui.item[0].id + " is droped");
}
});
If you need other row data, you can get there using the id of the row moved and getRowData
method.
How to post the results to the server you should decide yourself. You can use $.ajax
function directly. I think, that changing of order of rows should not be interpret as an adding, deleting or editing of rows.
本文标签: phpUsing JQgrid and sortableRows Update table row orderStack Overflow
版权声明:本文标题:php - Using JQgrid and sortableRows. Update table row order - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743839058a2547941.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论