Revert 582b156d5f2b9b8b92f9289aa1288e1edb637450: Refresh non-action widgets before invocation

new-json-store-area
jeremy@jermolene.com 2021-06-02 21:47:28 +01:00
rodzic 753bf8fe62
commit 056e6541a1
1 zmienionych plików z 1 dodań i 2 usunięć

Wyświetl plik

@ -569,10 +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];
// 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) {
child.refreshSelf();
if(child.invokeAction(triggeringWidget,event)) {
handled = true;
}