<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: UI problem with select component in Vuforia Studio</title>
    <link>https://www.ptcusercommunity.com/t5/Vuforia-Studio/UI-problem-with-select-component/m-p/588216#M4865</link>
    <description>&lt;P&gt;I tried your css code but it still reserves some space for the label...&lt;/P&gt;</description>
    <pubDate>Wed, 09 Jan 2019 09:17:45 GMT</pubDate>
    <dc:creator>Tony_Nystrand</dc:creator>
    <dc:date>2019-01-09T09:17:45Z</dc:date>
    <item>
      <title>UI problem with select component</title>
      <link>https://www.ptcusercommunity.com/t5/Vuforia-Studio/UI-problem-with-select-component/m-p/588039#M4849</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I have a strange behavior when using Select-component. In the middle of the screen I have a popup container with a Select- and Button-component. When I select the Select-component to choose one of the items in the list the UI moves upwards (To keep the component visible?), but when I'm done with the selection and closes it the UI remains in the upper position, it doesn't move back to it's original position. Not until I rotate the phone (UI is then re-drawn). Is it possible to force a re-draw with JavaScript?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Also, is it possible to remove the label part from the Select-component? If I leave it blank it still occupies most of the width, I would like the value itself to occupy the whole width.&lt;/P&gt;
&lt;P&gt;Can it be done with CSS?&lt;/P&gt;
&lt;P&gt;In general I find it really hard to find any documentation how to style the different widgets/components with CSS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;BR,&lt;/P&gt;
&lt;P&gt;Tony&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 07:42:29 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Vuforia-Studio/UI-problem-with-select-component/m-p/588039#M4849</guid>
      <dc:creator>Tony_Nystrand</dc:creator>
      <dc:date>2019-01-08T07:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: UI problem with select component</title>
      <link>https://www.ptcusercommunity.com/t5/Vuforia-Studio/UI-problem-with-select-component/m-p/588131#M4853</link>
      <description>&lt;P&gt;I have a similar setup in an experience i did a while back and I don't have the problem of it moving around. My popup is in the Left panel of the 2D layout but for the Popup widget the type is Floating and Centered is checked. this places it in the middle of the screen and it stays there on Android and iOS.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;As for making the labels smaller I too would like a solution for this. I would imagine a hack method of using some JS to find the element that is the left half of the select object and modify it's width after load. But I have not tried this.&lt;/P&gt;</description>
      <pubDate>Tue, 08 Jan 2019 15:21:19 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Vuforia-Studio/UI-problem-with-select-component/m-p/588131#M4853</guid>
      <dc:creator>jmikesell</dc:creator>
      <dc:date>2019-01-08T15:21:19Z</dc:date>
    </item>
    <item>
      <title>Re: UI problem with select component</title>
      <link>https://www.ptcusercommunity.com/t5/Vuforia-Studio/UI-problem-with-select-component/m-p/588199#M4863</link>
      <description>&lt;P&gt;for the label use this CSS for the select widget.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;.newselect select {&lt;BR /&gt; -webkit-appearance: none;&lt;BR /&gt; -moz-appearance: none;&lt;BR /&gt; appearance: none;&lt;BR /&gt; position: absolute;&lt;BR /&gt; top: 0;&lt;BR /&gt; bottom: 0;&lt;BR /&gt; right: 0;&lt;BR /&gt; height:auto;&lt;BR /&gt; width: 100%;&lt;BR /&gt; border: none;&lt;BR /&gt; background: #fff;&lt;BR /&gt; color: #33cd5f;&lt;BR /&gt; font-size: 22px;&lt;BR /&gt; }&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;insert into class&amp;nbsp; .newselect&amp;nbsp; and insert a blank character into Label property of select widget.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope I was helpful&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Giuseppe&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN&gt;I hope I was helpful&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jan 2019 08:20:16 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Vuforia-Studio/UI-problem-with-select-component/m-p/588199#M4863</guid>
      <dc:creator>Giuseppe_Fiore</dc:creator>
      <dc:date>2019-01-09T08:20:16Z</dc:date>
    </item>
    <item>
      <title>Re: UI problem with select component</title>
      <link>https://www.ptcusercommunity.com/t5/Vuforia-Studio/UI-problem-with-select-component/m-p/588213#M4864</link>
      <description>&lt;P&gt;I tried to create the setup exactly like you described, but still the same problem.&lt;/P&gt;
&lt;P&gt;If I move the popup-window to the top there is no problem. So it only happens when the "default-mobile-selectionlist-ui" partly covers the popup window.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Experience was built with Vuforia Studio 8.3.7 and same version on the Vuforia View app.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jan 2019 09:12:54 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Vuforia-Studio/UI-problem-with-select-component/m-p/588213#M4864</guid>
      <dc:creator>Tony_Nystrand</dc:creator>
      <dc:date>2019-01-09T09:12:54Z</dc:date>
    </item>
    <item>
      <title>Re: UI problem with select component</title>
      <link>https://www.ptcusercommunity.com/t5/Vuforia-Studio/UI-problem-with-select-component/m-p/588216#M4865</link>
      <description>&lt;P&gt;I tried your css code but it still reserves some space for the label...&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jan 2019 09:17:45 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Vuforia-Studio/UI-problem-with-select-component/m-p/588216#M4865</guid>
      <dc:creator>Tony_Nystrand</dc:creator>
      <dc:date>2019-01-09T09:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: UI problem with select component</title>
      <link>https://www.ptcusercommunity.com/t5/Vuforia-Studio/UI-problem-with-select-component/m-p/588238#M4866</link>
      <description>&lt;P&gt;try to add this into Application&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;.input-label {&lt;BR /&gt;display:none;&lt;BR /&gt;}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;i can't try , i hope to solve your problem.&lt;/P&gt;
&lt;P&gt;giuseppe.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jan 2019 10:58:41 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Vuforia-Studio/UI-problem-with-select-component/m-p/588238#M4866</guid>
      <dc:creator>Giuseppe_Fiore</dc:creator>
      <dc:date>2019-01-09T10:58:41Z</dc:date>
    </item>
    <item>
      <title>Re: UI problem with select component</title>
      <link>https://www.ptcusercommunity.com/t5/Vuforia-Studio/UI-problem-with-select-component/m-p/588241#M4867</link>
      <description>&lt;P&gt;Sorry, but that code had no effect on the select widget.&lt;/P&gt;</description>
      <pubDate>Wed, 09 Jan 2019 11:09:59 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Vuforia-Studio/UI-problem-with-select-component/m-p/588241#M4867</guid>
      <dc:creator>Tony_Nystrand</dc:creator>
      <dc:date>2019-01-09T11:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: UI problem with select component</title>
      <link>https://www.ptcusercommunity.com/t5/Vuforia-Studio/UI-problem-with-select-component/m-p/589465#M4902</link>
      <description>&lt;P&gt;Can you share a screenshot of the popup within Studio and it's configuration as well as the issue on your mobile device?&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;For the CSS, you can make the selection be the entire width by adding 'max-width: 100%' to your custom class&amp;nbsp;&lt;a href="https://www.ptcusercommunity.com/t5/user/viewprofilepage/user-id/205864"&gt;@Giuseppe_Fiore&lt;/a&gt;&amp;nbsp;provided and keeping&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;.input-label{&lt;/P&gt;
&lt;P&gt;display:none;&lt;/P&gt;
&lt;P&gt;}&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="selector.jpg" style="width: 371px;"&gt;&lt;img src="https://www.ptcusercommunity.com/t5/image/serverpage/image-id/13484i69137FE1CF69166F/image-dimensions/371x153?v=v2" width="371" height="153" role="button" title="selector.jpg" alt="selector.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 16 Jan 2019 20:22:22 GMT</pubDate>
      <guid>https://www.ptcusercommunity.com/t5/Vuforia-Studio/UI-problem-with-select-component/m-p/589465#M4902</guid>
      <dc:creator>tmccombie</dc:creator>
      <dc:date>2019-01-16T20:22:22Z</dc:date>
    </item>
  </channel>
</rss>

