<?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: Display box that can both input column name and numeric value in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Display-box-that-can-both-input-column-name-and-numeric-value/m-p/352642#M60196</link>
    <description>&lt;P&gt;Why not provide two choices: a list box populated with column names and a number edit box to accept a number instead? Then define a function or provide an expression to process the one with which the user interacts.&lt;/P&gt;</description>
    <pubDate>Mon, 25 Jan 2021 19:20:44 GMT</pubDate>
    <dc:creator>Mark_Bailey</dc:creator>
    <dc:date>2021-01-25T19:20:44Z</dc:date>
    <item>
      <title>Display box that can both input column name and numeric value</title>
      <link>https://community.jmp.com/t5/Discussions/Display-box-that-can-both-input-column-name-and-numeric-value/m-p/351337#M60090</link>
      <description>&lt;P&gt;Is there a display box that can take both column name and numeric value ? I'm trying to create a window where users can either select a column from column list (like a col list box) or insert a constant value (like a number edit box).&lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 22:03:51 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-box-that-can-both-input-column-name-and-numeric-value/m-p/351337#M60090</guid>
      <dc:creator>Djtjhin</dc:creator>
      <dc:date>2023-06-09T22:03:51Z</dc:date>
    </item>
    <item>
      <title>Re: Display box that can both input column name and numeric value</title>
      <link>https://community.jmp.com/t5/Discussions/Display-box-that-can-both-input-column-name-and-numeric-value/m-p/351377#M60092</link>
      <description>No such object exists.  However, by using native list box() and text edit box() I can imagine putting some JSL behind them and creating the input window you want.  It will just require you to add JSL to replicate the features of the col list box() and add the ability to enter your numeric values too.</description>
      <pubDate>Thu, 21 Jan 2021 04:08:39 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-box-that-can-both-input-column-name-and-numeric-value/m-p/351377#M60092</guid>
      <dc:creator>txnelson</dc:creator>
      <dc:date>2021-01-21T04:08:39Z</dc:date>
    </item>
    <item>
      <title>Re: Display box that can both input column name and numeric value</title>
      <link>https://community.jmp.com/t5/Discussions/Display-box-that-can-both-input-column-name-and-numeric-value/m-p/351378#M60093</link>
      <description>&lt;P&gt;I guess I'm gonna pass on that for now then.&amp;nbsp;Thanks Jim.&lt;/P&gt;</description>
      <pubDate>Thu, 21 Jan 2021 04:53:37 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-box-that-can-both-input-column-name-and-numeric-value/m-p/351378#M60093</guid>
      <dc:creator>Djtjhin</dc:creator>
      <dc:date>2021-01-21T04:53:37Z</dc:date>
    </item>
    <item>
      <title>Re: Display box that can both input column name and numeric value</title>
      <link>https://community.jmp.com/t5/Discussions/Display-box-that-can-both-input-column-name-and-numeric-value/m-p/352642#M60196</link>
      <description>&lt;P&gt;Why not provide two choices: a list box populated with column names and a number edit box to accept a number instead? Then define a function or provide an expression to process the one with which the user interacts.&lt;/P&gt;</description>
      <pubDate>Mon, 25 Jan 2021 19:20:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-box-that-can-both-input-column-name-and-numeric-value/m-p/352642#M60196</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2021-01-25T19:20:44Z</dc:date>
    </item>
    <item>
      <title>Re: Display box that can both input column name and numeric value</title>
      <link>https://community.jmp.com/t5/Discussions/Display-box-that-can-both-input-column-name-and-numeric-value/m-p/352768#M60217</link>
      <description>&lt;P&gt;I thought about this idea as well. But I'm expecting a combination of inputs (i.e. both columns &amp;amp; single values). Could you explain more / give examples of the expression function you mentioned ?&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2021 02:49:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-box-that-can-both-input-column-name-and-numeric-value/m-p/352768#M60217</guid>
      <dc:creator>Djtjhin</dc:creator>
      <dc:date>2021-01-26T02:49:52Z</dc:date>
    </item>
    <item>
      <title>Re: Display box that can both input column name and numeric value</title>
      <link>https://community.jmp.com/t5/Discussions/Display-box-that-can-both-input-column-name-and-numeric-value/m-p/352795#M60220</link>
      <description>&lt;P&gt;The way I handle this use-case is to use a ComboBox showing a a pre-defined list of values from which the user can select a value, and the last value of the list is always "other...".&amp;nbsp; Attach an event handler to the combo box that reacts to a selection;&amp;nbsp; if the user selects "other..." then I present a modal window with a TextEditBox (or NumberEditBox) where the user can specify a new value.&amp;nbsp; Afterwards append the new value to the list used to populate the ComboBox.&lt;/P&gt;</description>
      <pubDate>Tue, 26 Jan 2021 06:46:28 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-box-that-can-both-input-column-name-and-numeric-value/m-p/352795#M60220</guid>
      <dc:creator>David_Burnham</dc:creator>
      <dc:date>2021-01-26T06:46:28Z</dc:date>
    </item>
    <item>
      <title>Re: Display box that can both input column name and numeric value</title>
      <link>https://community.jmp.com/t5/Discussions/Display-box-that-can-both-input-column-name-and-numeric-value/m-p/357181#M60722</link>
      <description>&lt;P&gt;All, thanks for the input and sorry for the late response. I think I manage to find a way around it by adding a radio box for each display box row (e.g. defaulting to input column) which will turn either a col list box or number edit box visible/invisible based on user preference. I haven't tried to write such script but perhaps I'll share it here once I have.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Feb 2021 16:25:48 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Display-box-that-can-both-input-column-name-and-numeric-value/m-p/357181#M60722</guid>
      <dc:creator>Djtjhin</dc:creator>
      <dc:date>2021-02-08T16:25:48Z</dc:date>
    </item>
  </channel>
</rss>

