Move all config inspection inside the "ready" handler.
[mkws-moved-to-github.git] / src / mkws-widget.js
index b676039..d1c76b4 100644 (file)
@@ -132,10 +132,12 @@ widget.autosearch = function(widget) {
         alert("This page has a MasterKey widget that needs a query specified by the '" + name + "' variable");
       }
     }
-  }
 
-  if (query) {
     widget.team.queue("ready").subscribe(function() {
+      // Postpone testing for the configuration items: these are not
+      // yet set for Record subclass widgets that fill them in in the
+      // subclass, as widget.autosearch is called in the superclass,
+      // before the subclass fiddles with the configuration.
       var sortOrder = widget.config.sort;
       var maxrecs = widget.config.maxrecs;
       var perpage = widget.config.perpage;