If this widget has child Action widgets, their run() methods
are called.
Usage
function () (view source)
var children = this.getChildren();
for(var i in children){var child = children[i];
if(child instanceof dojox.wire.ml.Action){
child.run.apply(child, arguments);
}}