November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
Hi, I don't understand your question so much!
I guess that your widget inherited from another and now you want customize it's UI right?
If true, you can override the postCreate method and inject whatever you want or simply copy the default template and modify ...
// Ha Bui
Hi,
Well I don't understand your answer either so that's fine :)
Any links to articles about modifying the templateString widget to show other properties that just the pagename, would be appreciated.
/Fredrik
Hi Fredrik,
I think these're some helpful links:
I use example in epiwiki, we have a widget:
define([
"dojo/_base/declare",
"dojo/html",
"dijit/_WidgetBase",
"dijit/_TemplatedMixin",
//CMS (use "epi/cms" if you are running EPiServer 7.0, "epi-cms" if you are running 7.1 or above)
"epi/cms/_ContentContextMixin",
"dojo/text!./templates/CustomComponent.html"
], function (
declare,
html,
_WidgetBase,
_TemplatedMixin,
_ContentContextMixin,
template
) {
return declare("alloy.components.CustomComponent",
[_WidgetBase, _TemplatedMixin, _ContentContextMixin], {
templateString: template,
contextChanged: function (context, callerData) {
html.set(this.contentName, context.name);
this.inherited(arguments);
}
});
});
with the template is:
<div>
<div data-dojo-attach-point="contentName"></div>
</div>
Now I create new widget that inherited from the widget above and want to add more information about "StartPublish" with attach-point name is: "contentDate"
define([
"dojo/_base/declare",
"dojo/when",
"alloy.components.CustomComponent"
], function (
declare,
when,
CustomComponent
) {
return declare("alloy.components.MyComponentCustomTemplate", [CustomComponent], {
template: "\
<div>\
<div data-dojo-attach-point=\"contentName\"></div>\
<div data-dojo-attach-point=\"contentDate\"></div>\
</div>",
contextChanged: function (context, callerData) {
this.inherited(arguments);
when(this.getCurrentContent(), function (currentContent) {
html.set(this.contentDate, currentContent.lastPublished);
});
}
});
});
Hope that help!
// Ha Bui
Thanks Ha Bui,
however, I did exactly as described, but I failed, I guess there is something more..
And besides, I have problems editing the .js file and then refresh, files are stuck in the browsers cache it seems, what files is best to edit to make fresh reload of all the js/html files in the widget?
Hi,
In a default templateString there is div with attribute
This renders the IContent Name and status (Published)
But if I want to show some other properties here, how shall I do? I would like to show "StartPublish"
Can I just add elements with other attach points in the template?
What are the names of properties to add here?
contentName, etc what else is there?