<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Image not showing in dashboard page1.html]]></title><description><![CDATA[<p dir="auto">I have used the following code in the Dashboard play area and it works but when I place this in the page1.html the images do not get found.</p>
<pre><code>&lt;ma-get-point-value point-xid="DP_514615" point="motor1" realtime="realtime"&gt;&lt;/ma-get-point-value&gt;

&lt;div layout="column"&gt;
    &lt;div&gt;
        &lt;strong&gt;Pump 1:&lt;/strong&gt;
        &lt;ma-switch-img point="motor1" ng-click="motor1.toggleValue()" src-false="img/ligthbulb_off.png" src-true="img/ligthbulb_on.png" default-src="img/close.png"&gt;
        &lt;/ma-switch-img&gt;
    &lt;/div&gt;
    &lt;md-switch ng-model="motor1.valueFn" ng-model-options="{getterSetter:true}"&gt;
        Pump 1
    &lt;/md-switch&gt;
&lt;/div&gt;
</code></pre>
]]></description><link>https://forum.mango-os.com/topic/2322/image-not-showing-in-dashboard-page1-html</link><generator>RSS for Node</generator><lastBuildDate>Fri, 17 Apr 2026 05:58:31 GMT</lastBuildDate><atom:link href="https://forum.mango-os.com/topic/2322.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 04 Jul 2016 03:39:04 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Image not showing in dashboard page1.html on Mon, 04 Jul 2016 15:05:33 GMT]]></title><description><![CDATA[<p dir="auto">The reason those images are not found are those src paths are relative to the custom dashboard that is using page1.html while the the image actually exists in the /mdAdmin folder that contains the dashboard docs pages.</p>
<p dir="auto">So you would need to jump up one folder from your custom dashboard then into /mdAdmin to find those images. This worked for me:</p>
<pre><code>&lt;ma-switch-img point="motor1" ng-click="motor1.toggleValue()" src-false="../mdAdmin/img/ligthbulb_off.png" src-true="../mdAdmin/img/ligthbulb_on.png" default-src="../mdAdmin/img/close.png"&gt;
</code></pre>
]]></description><link>https://forum.mango-os.com/post/11940</link><guid isPermaLink="true">https://forum.mango-os.com/post/11940</guid><dc:creator><![CDATA[Will Geller]]></dc:creator><pubDate>Mon, 04 Jul 2016 15:05:33 GMT</pubDate></item></channel></rss>