Skip to content
Snippets Groups Projects

fix for #1493. Avoids deleting checkbox and reference fields in mass edit. Since…

Merged fix for #1493. Avoids deleting checkbox and reference fields in mass edit. Since…
Merged Ruben A. Estrada requested to merge ruben.estrada/vtigercrm:fix_issue_1493 into 7.4.0
+ 1
1
Compare changes
  • Side-by-side
  • Inline
@@ -1379,7 +1379,7 @@ Vtiger.Class("Vtiger_List_Js", {
}
//add url params for hidden fields needed for the save request
var hiddenFields = form.find("input[type=hidden]");
var hiddenFields = form.children("input[type=hidden]");
hiddenFields.each(function(i, obj){
key = $(this).attr("name");
Loading