Fixed: made row unselectable after updating the row

Changed command to work with our actual jquery version.
This commit is contained in:
Cris
2019-09-30 14:20:05 +02:00
committed by hainberg
parent 6b29461e06
commit 998e906ad3
3 changed files with 5 additions and 5 deletions
@@ -270,7 +270,7 @@ $filterWidgetArray = array(
{
// deselect and disable new selection of updated rows (approvement done)
row.deselect();
row.getElement().off("click");
row.getElement().style["pointerEvents"] = "none";
},
rowFormatter:function(row)
{
@@ -269,7 +269,7 @@ $filterWidgetArray = array(
{
// deselect and disable new selection of updated rows (approvement done)
row.deselect();
row.getElement().off("click");
row.getElement().style["pointerEvents"] = "none";
},
rowFormatter:function(row)
{
@@ -267,9 +267,9 @@ $filterWidgetArray = array(
},
rowUpdated:function(row)
{
// deselect and disable new selection of updated rows (ordering done)
row.deselect();
row.getElement().off("click");
// deselect and disable new selection of updated rows (ordering done)
row.deselect();
row.getElement().style["pointerEvents"] = "none";
},
rowFormatter:function(row)
{