File tree 2 files changed +3
-1
lines changed
grails-app/assets/javascripts
2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change 1243
1243
propTarget . loadData ( value ) ;
1244
1244
} else if ( _ . isFunction ( propTarget . load ) ) {
1245
1245
propTarget . load ( value ) ;
1246
+ } else if ( propTarget && propTarget . $parent && _ . isFunction ( propTarget . $parent [ "load" + propTarget . listName ] ) ) {
1247
+ propTarget . $parent [ "load" + propTarget . listName ] ( value ) ;
1246
1248
} else if ( ko . isObservable ( propTarget ) ) {
1247
1249
propTarget ( value ) ;
1248
1250
} else {
Original file line number Diff line number Diff line change @@ -1083,7 +1083,7 @@ function orEmptyArray(v) {
1083
1083
var parent = context . parent ;
1084
1084
var listName = context . listName ;
1085
1085
var modelName = context . outputModel . name ;
1086
-
1086
+ self . $parent = context . parent ;
1087
1087
self . listName = listName ;
1088
1088
self . addRow = function ( data ) {
1089
1089
var newItem = self . newItem ( data , self . rowCount ( ) ) ;
You can’t perform that action at this time.
0 commit comments