mirror of
https://github.com/symbiote/silverstripe-gridfieldextensions.git
synced 2024-10-22 17:05:39 +02:00
Fix stopPropagation on click if no GridFieldEditableColumns
stopPropagation shouldn't fire if no GridFieldEditableColumns was added. It forces user to click on edit button on the far right instead of directly being able to click anywhere on the row.
This commit is contained in:
parent
dc34dbe781
commit
30a4f34fbf
@ -250,7 +250,7 @@
|
||||
* GridFieldEditableColumns
|
||||
*/
|
||||
|
||||
$('.grid-field .ss-gridfield-item').entwine({
|
||||
$('.ss-gridfield-editable .ss-gridfield-item').entwine({
|
||||
onclick: function(e) {
|
||||
// Prevent the default row click action when clicking a cell that contains a field
|
||||
if (this.find('.editable-column-field').length) {
|
||||
|
Loading…
Reference in New Issue
Block a user