Przeglądaj źródła

[fix] link selection inside grid, fixes bug caused by Stortable

version-14
Rushabh Mehta 8 lat temu
rodzic
commit
b340be8829
1 zmienionych plików z 4 dodań i 0 usunięć
  1. +4
    -0
      frappe/public/js/frappe/form/grid.js

+ 4
- 0
frappe/public/js/frappe/form/grid.js Wyświetl plik

@@ -216,8 +216,12 @@ frappe.ui.form.Grid = Class.extend({
return;
}


new Sortable($rows.get(0), {
group: {name: 'row'},
handle: ".sortable-handle",
draggable: '.grid-row',
filter: 'li, a',
onUpdate: function(event, ui) {
me.frm.doc[me.df.fieldname] = [];
$rows.find(".grid-row").each(function(i, item) {


Ładowanie…
Anuluj
Zapisz