Guest User

Untitled

a guest
Jun 22nd, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. // <div dojoType="myNamespace.MyWidget" templateName="fancyDTLTemplate.html"></div>
  2.  
  3. dojo.provide("myNamespace.MyWidget");
  4. dojo.declare("myNamespace.MyWidget",
  5. [dijit._Widget, dojox.dtl._Templated],
  6. {
  7. templatePath: null,
  8. templateName: null,
  9. /* *************************************************************************************************** postCreate */
  10. postCreate: function()
  11. {
  12. },
  13.  
  14. /* *********************************************************************************************** buildRendering */
  15. buildRendering: function()
  16. {
  17. this.templatePath = dojo.moduleUrl("myNamespace.templates", this.templateName);
  18. this.inherited(arguments);
  19. },
  20. }
  21. );
Add Comment
Please, Sign In to add comment