X-Git-Url: http://jsfdemo.indexdata.com/?a=blobdiff_plain;f=examples%2Fhtdocs%2Fmkws-widget-credo.js;h=b7f8f4ff17ce42e750a1d40b520a4e79e0a9137d;hb=7909feac67ed8ae98aa1163e8e5d978e86a1ee92;hp=21a0363e56c8c59bd11d8de8c11cc77dc0e5f69f;hpb=1852d8de47d97af1144ae16f78e3eadb44308efe;p=mkws-moved-to-github.git diff --git a/examples/htdocs/mkws-widget-credo.js b/examples/htdocs/mkws-widget-credo.js index 21a0363..b7f8f4f 100644 --- a/examples/htdocs/mkws-widget-credo.js +++ b/examples/htdocs/mkws-widget-credo.js @@ -6,6 +6,19 @@ mkws.registerWidgetType('Credo', function() { var that = this; + + this.team.registerTemplate('CredoImage', '\ +
\ + \ + {{#mkws-first md-thumburl}}\ + {{../md-title}}\ + {{/mkws-first}}\ +
\ +
\ +

{{md-title}}

\ +
\ +'); + var s = [] s.push(''); @@ -14,9 +27,10 @@ mkws.registerWidgetType('Credo', function() { s.push(''); s.push(''); s.push(sectionRow('entries', 'Credo Entries', - this.subwidget('Records', { /* ### config */ }))); + 1 || this.subwidget('Records', { /* ### config */ }))); s.push(sectionRow('articles', 'Articles', - this.subwidget('Records', { /* ### config */ }))); + 1 || this.subwidget('Records', { /* ### config */ }))); s.push(sectionRow('books', 'Books', - this.subwidget('Records', { /* ### config */ }))); + 1 || this.subwidget('Records', { /* ### config */ }))); s.push(sectionRow('news', 'News', - this.subwidget('Records', { /* ### config */ }))); + 1 || this.subwidget('Records', { /* ### config */ }))); s.push(sectionRow('resources', 'Suggested Resources', - this.subwidget('Records', { /* ### config */ }))); + 1 || this.subwidget('Records', { /* ### config */ }))); s.push('
'); s.push(section('encyclopaedia', 'Topic Page: ### title', - this.subwidget('Reference'))); + this.subwidget('Reference', { _team: 'ref' }))); + // The Images widget needs to be in our team so we can set its template s.push(section('image', 'Images', - this.subwidget('Images', { /* ### config */ }))); + this.subwidget('GoogleImage', { maxrecs: 4, template: 'CredoImage' }))); s.push(''); @@ -29,15 +43,15 @@ mkws.registerWidgetType('Credo', function() { s.push('
');