mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Fixed js error when defaultAction isn't set
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@60446 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
8bf5c3781e
commit
668dc7c6d2
@ -14,7 +14,7 @@ ComplexTableField.prototype = {
|
|||||||
rules['#'+this.id+' table.data tbody td'] = {onclick: this.openPopup.bind(this)};
|
rules['#'+this.id+' table.data tbody td'] = {onclick: this.openPopup.bind(this)};
|
||||||
|
|
||||||
// invoke row action-link based on default-action set in classname
|
// invoke row action-link based on default-action set in classname
|
||||||
if(defaultAction) {
|
if(typeof defaultAction != 'undefined' && defaultAction) {
|
||||||
rules['#'+this.id+' table.data tbody td'] = {
|
rules['#'+this.id+' table.data tbody td'] = {
|
||||||
onclick: function(e) {
|
onclick: function(e) {
|
||||||
var link = $$('.'+defaultAction, Event.element(e).parentNode)[0].getAttribute('href');
|
var link = $$('.'+defaultAction, Event.element(e).parentNode)[0].getAttribute('href');
|
||||||
|
Loading…
Reference in New Issue
Block a user