<?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: Supprimer l'heure de l'affichage Calendar Box in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Supprimer-l-heure-de-l-affichage-Calendar-Box/m-p/398364#M64936</link>
    <description>&lt;P&gt;You might also like &lt;LI-MESSAGE title="Select Date Range with Calendar Boxes" uid="222980" url="https://community.jmp.com/t5/Uncharted/Select-Date-Range-with-Calendar-Boxes/m-p/222980#U222980" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-blog-thread lia-fa-icon lia-fa-blog lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp; which links the two boxes together, forces the returned dates to midnight, and uses &amp;lt;&amp;lt;showTime(0) to remove the GUI elements.&lt;/P&gt;</description>
    <pubDate>Mon, 05 Jul 2021 14:08:53 GMT</pubDate>
    <dc:creator>Craige_Hales</dc:creator>
    <dc:date>2021-07-05T14:08:53Z</dc:date>
    <item>
      <title>Supprimer l'heure de l'affichage Calendar Box</title>
      <link>https://community.jmp.com/t5/Discussions/Supprimer-l-heure-de-l-affichage-Calendar-Box/m-p/398332#M64932</link>
      <description>&lt;P&gt;Bonjour,&lt;/P&gt;
&lt;P&gt;J'ai un code JSL qui demande à l'utilisateur de spécifier un intervalle de temps via une Calendar Box. Mon code fonctionne bien je souhaite seulement pouvoir supprimer l'affichage de l'heure qui ne m'est pas utile par la suite. Est ce que c'est possible ?&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="txnelson_0-1625492997709.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/33974iCDB07C3F0EACD337/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1625492997709.png" alt="txnelson_0-1625492997709.png" /&gt;&lt;/span&gt;&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;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt1=Today(),
dt2=Today(),
HListBox(
	PanelBox( "From Time", scal = Calendar Box(SetFunction(Function({this}, date1=scal&amp;lt;&amp;lt; Get Date) ))),
	spacerbox(Size(20,20)),
	PanelBox( "To Time", ecal = Calendar Box(SetFunction(Function({this}, date2=ecal&amp;lt;&amp;lt; Get Date) )))
)&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Merci d'avance pour vos réponses !&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 19:51:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Supprimer-l-heure-de-l-affichage-Calendar-Box/m-p/398332#M64932</guid>
      <dc:creator>Elise_B</dc:creator>
      <dc:date>2023-06-09T19:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: Supprimer l'heure de l'affichage Calendar Box</title>
      <link>https://community.jmp.com/t5/Discussions/Supprimer-l-heure-de-l-affichage-Calendar-Box/m-p/398359#M64934</link>
      <description>&lt;P&gt;I was able to change the visibility on the not required objects with the script below&lt;/P&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="txnelson_0-1625492919865.png" style="width: 400px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/33973i173CF2F68DB66CEE/image-size/medium?v=v2&amp;amp;px=400" role="button" title="txnelson_0-1625492919865.png" alt="txnelson_0-1625492919865.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;dt1 = Today();
dt2 = Today();
nw = New Window( "test",
	H List Box(
		Panel Box( "From Time",
			scal = Calendar Box( SetFunction( Function( {this}, date1 = scal &amp;lt;&amp;lt; Get Date ) ) )
		),
		Spacer Box( Size( 20, 20 ) ),
		Panel Box( "To Time",
			ecal = Calendar Box( SetFunction( Function( {this}, date2 = ecal &amp;lt;&amp;lt; Get Date ) ) )
		)
	)
);

nw[Text Box( 16 )] &amp;lt;&amp;lt; visibility( collapse );
nw[Text Box( 8 )] &amp;lt;&amp;lt; visibility( collapse );
nw[Number Edit Box( 4 )] &amp;lt;&amp;lt; visibility( collapse );
nw[Number Edit Box( 2 )] &amp;lt;&amp;lt; visibility( collapse );&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;See Craige Hales response below.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jul 2021 14:33:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Supprimer-l-heure-de-l-affichage-Calendar-Box/m-p/398359#M64934</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-07-05T14:33:13Z</dc:date>
    </item>
    <item>
      <title>Re: Supprimer l'heure de l'affichage Calendar Box</title>
      <link>https://community.jmp.com/t5/Discussions/Supprimer-l-heure-de-l-affichage-Calendar-Box/m-p/398363#M64935</link>
      <description>&lt;P&gt;Cela a parfaitement fonctionné merci beaucoup !&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jul 2021 13:58:22 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Supprimer-l-heure-de-l-affichage-Calendar-Box/m-p/398363#M64935</guid>
      <dc:creator>Elise_B</dc:creator>
      <dc:date>2021-07-05T13:58:22Z</dc:date>
    </item>
    <item>
      <title>Re: Supprimer l'heure de l'affichage Calendar Box</title>
      <link>https://community.jmp.com/t5/Discussions/Supprimer-l-heure-de-l-affichage-Calendar-Box/m-p/398364#M64936</link>
      <description>&lt;P&gt;You might also like &lt;LI-MESSAGE title="Select Date Range with Calendar Boxes" uid="222980" url="https://community.jmp.com/t5/Uncharted/Select-Date-Range-with-Calendar-Boxes/m-p/222980#U222980" discussion_style_icon_css="lia-mention-container-editor-message lia-img-icon-blog-thread lia-fa-icon lia-fa-blog lia-fa-thread lia-fa"&gt;&lt;/LI-MESSAGE&gt;&amp;nbsp; which links the two boxes together, forces the returned dates to midnight, and uses &amp;lt;&amp;lt;showTime(0) to remove the GUI elements.&lt;/P&gt;</description>
      <pubDate>Mon, 05 Jul 2021 14:08:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Supprimer-l-heure-de-l-affichage-Calendar-Box/m-p/398364#M64936</guid>
      <dc:creator>Craige_Hales</dc:creator>
      <dc:date>2021-07-05T14:08:53Z</dc:date>
    </item>
  </channel>
</rss>

