Folks,
Environment: Sharepoint 2013 (on premise)
I want to show a custom message "more info " at the bottom of a list webpart.
Tried by adding a custom message in a Content Editor on the list page at the bottom, but doesn't shows on the WebPart.
Later, attached a jslink with the following code -
<code>
(function () {
var overrideCtx = {};
overrideCtx.Templates = {};
overrideCtx.Templates.Footer ="Click Here";
SPClientTemplates.TemplateManager.RegisterTemplateOverrides(overrideCtx);})();
</code>
It doesn’t works, tested on SharePoint Onprem 2013 & SharePoint Online.
Please suggest what am I doing wrong?
Regards, Sumit