Skip to content

Commit

Permalink
Fix the bug with mtype in delGridRow
Browse files Browse the repository at this point in the history
The line was accidentally removed before.
  • Loading branch information
OlegKi committed Nov 30, 2015
1 parent 3e97a4f commit dc8e21e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions js/grid.formedit.js
Original file line number Diff line number Diff line change
Expand Up @@ -1756,6 +1756,7 @@
var url = o.url || p.editurl,
ajaxOptions = $.extend({
url: $.isFunction(url) ? url.call($t, postd[idname], postd, o) : url,
type: o.mtype,
data: $.isFunction(o.serializeDelData) ? o.serializeDelData.call($t, postd) : postd,
complete: function (jqXHR, textStatus) {
var i;
Expand Down
4 changes: 2 additions & 2 deletions js/jquery.jqgrid.min.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion js/jquery.jqgrid.min.map

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions js/jquery.jqgrid.src.js
Original file line number Diff line number Diff line change
Expand Up @@ -12095,6 +12095,7 @@
var url = o.url || p.editurl,
ajaxOptions = $.extend({
url: $.isFunction(url) ? url.call($t, postd[idname], postd, o) : url,
type: o.mtype,
data: $.isFunction(o.serializeDelData) ? o.serializeDelData.call($t, postd) : postd,
complete: function (jqXHR, textStatus) {
var i;
Expand Down

0 comments on commit dc8e21e

Please sign in to comment.