<?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[Screens - jumps, drop down order]]></title><description><![CDATA[<p dir="auto">hi,</p>
<p dir="auto">is it possible to jump to another screen via a click button?</p>
<p dir="auto">also, of the available screens, the list appears to be in the order of creation... can i sort this alphabetically? or as i see fit?</p>
<p dir="auto">thanks</p>
<p dir="auto">Neil</p>
]]></description><link>https://forum.mango-os.com/topic/568/screens-jumps-drop-down-order</link><generator>RSS for Node</generator><lastBuildDate>Sun, 09 Aug 2026 14:06:21 GMT</lastBuildDate><atom:link href="https://forum.mango-os.com/topic/568.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 11 Oct 2010 10:08:38 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Screens - jumps, drop down order on Wed, 13 Oct 2010 14:50:40 GMT]]></title><description><![CDATA[<p dir="auto">It may be an issue for server-script component</p>
<p dir="auto">I used the property "disabled" in a button and saved the view.<br />
When I try to edit the view, this component is also disabled.<br />
So I need to enable the button using the datapoint logic to enable the component editing on the view.</p>
]]></description><link>https://forum.mango-os.com/post/4601</link><guid isPermaLink="true">https://forum.mango-os.com/post/4601</guid><dc:creator><![CDATA[ftomiBR]]></dc:creator><pubDate>Wed, 13 Oct 2010 14:50:40 GMT</pubDate></item><item><title><![CDATA[Reply to Screens - jumps, drop down order on Wed, 13 Oct 2010 12:37:33 GMT]]></title><description><![CDATA[<p dir="auto">the problem was solved, need to supress the "" from the html code.</p>
]]></description><link>https://forum.mango-os.com/post/4600</link><guid isPermaLink="true">https://forum.mango-os.com/post/4600</guid><dc:creator><![CDATA[ftomiBR]]></dc:creator><pubDate>Wed, 13 Oct 2010 12:37:33 GMT</pubDate></item><item><title><![CDATA[Reply to Screens - jumps, drop down order on Wed, 13 Oct 2010 12:29:30 GMT]]></title><description><![CDATA[<p dir="auto">nice but it do not works with html links or buttons, how can I create a link button there?</p>
]]></description><link>https://forum.mango-os.com/post/4599</link><guid isPermaLink="true">https://forum.mango-os.com/post/4599</guid><dc:creator><![CDATA[ftomiBR]]></dc:creator><pubDate>Wed, 13 Oct 2010 12:29:30 GMT</pubDate></item><item><title><![CDATA[Reply to Screens - jumps, drop down order on Wed, 13 Oct 2010 07:25:21 GMT]]></title><description><![CDATA[<p dir="auto">Create a Server-side script, select the point on which displaying the button depends. This script should give you the idea:<br />
return value == 0 ? "" : "button";</p>
<p dir="auto">With the code above, if the selected point is 0 nothing is displayed, otherwise a button text is displayed.</p>
<p dir="auto">Regards,<br />
Greg</p>
]]></description><link>https://forum.mango-os.com/post/4598</link><guid isPermaLink="true">https://forum.mango-os.com/post/4598</guid><dc:creator><![CDATA[posztos]]></dc:creator><pubDate>Wed, 13 Oct 2010 07:25:21 GMT</pubDate></item><item><title><![CDATA[Reply to Screens - jumps, drop down order on Wed, 13 Oct 2010 01:14:08 GMT]]></title><description><![CDATA[<p dir="auto">Yes, I've already realized that but actually I'm the PLC guy and got no clues on how to create this conditional button with 'onClick' event in pure javascript</p>
<p dir="auto">Could you please post some example?</p>
]]></description><link>https://forum.mango-os.com/post/4596</link><guid isPermaLink="true">https://forum.mango-os.com/post/4596</guid><dc:creator><![CDATA[ftomiBR]]></dc:creator><pubDate>Wed, 13 Oct 2010 01:14:08 GMT</pubDate></item><item><title><![CDATA[Reply to Screens - jumps, drop down order on Tue, 12 Oct 2010 17:22:45 GMT]]></title><description><![CDATA[<p dir="auto">You could use a server-side script component to conditionally present the button.</p>
]]></description><link>https://forum.mango-os.com/post/4588</link><guid isPermaLink="true">https://forum.mango-os.com/post/4588</guid><dc:creator><![CDATA[mlohbihler]]></dc:creator><pubDate>Tue, 12 Oct 2010 17:22:45 GMT</pubDate></item><item><title><![CDATA[Reply to Screens - jumps, drop down order on Mon, 11 Oct 2010 11:40:08 GMT]]></title><description><![CDATA[<p dir="auto">and here there is a button</p>
<pre><code>&lt;FORM&gt;
&lt;INPUT TYPE="BUTTON" VALUE="View 2" ONCLICK="window.location.href='http://localhost/views.shtm?viewId=2'"&gt;
&lt;/FORM&gt;

</code></pre>
<p dir="auto">I also would like to know if there is some script to use a datapoint value to decide if the option will be enabled or not.</p>
]]></description><link>https://forum.mango-os.com/post/4585</link><guid isPermaLink="true">https://forum.mango-os.com/post/4585</guid><dc:creator><![CDATA[ftomiBR]]></dc:creator><pubDate>Mon, 11 Oct 2010 11:40:08 GMT</pubDate></item><item><title><![CDATA[Reply to Screens - jumps, drop down order on Mon, 11 Oct 2010 11:37:09 GMT]]></title><description><![CDATA[<p dir="auto">Look at HTML, you can use something like this to create a custom drop down list</p>
<pre><code> &lt;SCRIPT TYPE="text/javascript"&gt;
 &lt;!--
 function dropdown(mySel)
 {
 var myWin, myVal;
 myVal = mySel.options[mySel.selectedIndex].value;
 if(myVal)
    {
    if(mySel.form.target)myWin = parent[mySel.form.target];
    else myWin = window;
    if (! myWin) return true;
    myWin.location = myVal;
    }
 return false;
 }
 //--&gt;
 &lt;/SCRIPT&gt;
 &lt;FORM 
 METHOD=POST onSubmit="return dropdown(this.gourl)"&gt;
 
 &lt;SELECT NAME="gourl"&gt;
 &lt;OPTION VALUE=""&gt;Choose a Destination...
 &lt;OPTION VALUE="http://localhost/views.shtm?viewId=2"&gt;View 2
 &lt;OPTION VALUE="http://localhostviews.shtm?viewId=3"&gt;View 3 
 &lt;OPTION VALUE="http://localhost/views.shtm?viewId=4"&gt;View 4
 &lt;/SELECT&gt;
 
 &lt;INPUT TYPE=SUBMIT VALUE="Go"&gt;
 &lt;/FORM&gt;

</code></pre>
]]></description><link>https://forum.mango-os.com/post/4584</link><guid isPermaLink="true">https://forum.mango-os.com/post/4584</guid><dc:creator><![CDATA[ftomiBR]]></dc:creator><pubDate>Mon, 11 Oct 2010 11:37:09 GMT</pubDate></item></channel></rss>