Only two small errors: firstly, to get a dijit instance (for example, a javascript object dijit.layout.ContentPane, not a DOM node), you have to use dijit.byId, and secondly, setting the property to dijit is done using the method set. So:
dijit.byId("summaryContent").set("title", "My new awesome title");
.. should do the trick.
source
share