mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-27 08:59:28 +00:00
Fixed: made row unselectable after updating the row
Changed command to work with our actual jquery version.
This commit is contained in:
@@ -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)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user