ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: Show Last Updated Date on Dashboard Hello reached out the people at sisense customer service and they helped me to find the issue. It is an issue with my version of sisense which hasn't been updated in a while. Re: Show Last Updated Date on Dashboard Yes I have added the script to text widget and I am not getting any error messages also. Re: Show Last Updated Date on Dashboard Here is my code file attached with changed elasticube name. ------------ function runHTTP() { datasource = [ { "elasticube": "ECSS_BUGTRENDNEW", "server": "localhost" } ] // Use $internalHttp service if exists const $internalHttp = prism.$injector.has("base.factories.internalHttp") ? prism.$injector.get("base.factories.internalHttp") : null; // Ajax configurations const ajaxConfig = { url: "/api/v1/elasticubes/getElasticubes", method: "POST", data: JSON.stringify(datasource), contentType: "application/json", dataType: "json", async: false }; // Use $internalHttp service for v8.0.1+ // else use default ajax request const httpPromise = $internalHttp ? $internalHttp(ajaxConfig, true) : $.ajax(ajaxConfig); // Return response return httpPromise.responseJSON; }; widget.on('domready', function(se, ev) { elasticubedetails = runHTTP(); ev.widget.style.content.html = '<font size=\"5\">' + moment(elasticubedetails[0].lastBuildTime).format('MMMM Do YYYY, h:mm:ss a') + '</font>' }) --------------------------------------- Re: Show Last Updated Date on Dashboard Hi harikm007 I am using the same code for my text box and I am not getting any answer. Can you please help me debug and see what the reason for failure could be?