jeremy@jermolene.com
2021-06-01 11:49:05 +01:00
parent 9faaa31299
commit 55c522ab8f
+2 -1
View File
@@ -569,8 +569,9 @@ Widget.prototype.invokeActions = function(triggeringWidget,event) {
// For each child widget
for(var t=0; t<this.children.length; t++) {
var child = this.children[t];
// Invoke the child if it is an action widget
// Rerender the child to ensure the attribute values are up to date
child.refreshSelf();
// Invoke the child if it is an action widget
if(child.invokeAction) {
if(child.invokeAction(triggeringWidget,event)) {
handled = true;