<?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: Update the content of a DisplayBox with an Associate Array when the selection of a ComboBox changes ? in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Update-the-content-of-a-DisplayBox-with-an-Associate-Array-when/m-p/581480#M78836</link>
    <description>&lt;P&gt;I haven't kept track of whether all of these are answered in other posts yet, but two thoughts:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;If you want to keep parameters ordered you could use arrays inside your associative array, like this:&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;AA = Associative Array( {
	{"Choice_A", [
		//Array of here to maintain order&lt;BR /&gt;		["name" =&amp;gt; "param_1", "default" =&amp;gt; 2],
		["name" =&amp;gt; "param_2", "default" =&amp;gt; 15],
		["name" =&amp;gt; "param_3", "default" =&amp;gt; .],
	]}
} )&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;You could specify text box and number edit box widths to make everything line up, or you could instead use a table with &lt;A href="https://www.jmp.com/support/help/zh/15.2/index.shtml#page/jmp/number-col-edit-boxes.shtml" target="_self"&gt;number col edit boxes&lt;/A&gt;.&lt;/LI&gt;
&lt;/UL&gt;</description>
    <pubDate>Wed, 14 Dec 2022 15:16:01 GMT</pubDate>
    <dc:creator>ih</dc:creator>
    <dc:date>2022-12-14T15:16:01Z</dc:date>
    <item>
      <title>Update the content of a DisplayBox with an Associate Array when the selection of a ComboBox changes ?</title>
      <link>https://community.jmp.com/t5/Discussions/Update-the-content-of-a-DisplayBox-with-an-Associate-Array-when/m-p/579809#M78708</link>
      <description>&lt;P&gt;[Version: JMP Pro 16.2.0]&lt;BR /&gt;Hello,&lt;/P&gt;
&lt;P&gt;I am trying to build an interface window for a script that:&lt;/P&gt;
&lt;OL&gt;
&lt;LI&gt;sends the current data table to Python and get user-input values for the parameters,&lt;/LI&gt;
&lt;LI&gt;performs some actions in Python,&lt;/LI&gt;
&lt;LI&gt;adds some columns from a Python DataFrame to the current data table.&lt;/LI&gt;
&lt;/OL&gt;
&lt;P&gt;I&amp;nbsp;added as attachment the layout I have in mind for the interface.&lt;/P&gt;
&lt;P&gt;I haven't figured out yet how to update the content of the parameters that I prompt the user to enter &lt;STRONG&gt;depending on&lt;/STRONG&gt; the user-selected option in the ComboBox above.&lt;BR /&gt;To make the code easier to maintain and avoid code redundancy (important for me because I plan to have many options in the ComboBox), I would like to store the parameters and their default values in an Associative Array on top of the script. The number of parameters for each option could be different.&lt;BR /&gt;I looked at the code of this add-in (&lt;A href="https://community.jmp.com/t5/JMP-Add-Ins/Data-visualization-with-t-SNE-and-UMAP/ta-p/177969" target="_blank" rel="noopener"&gt;https://community.jmp.com/t5/JMP-Add-Ins/Data-visualization-with-t-SNE-and-UMAP/ta-p/177969&lt;/A&gt;) but unfortunately, the fields to be displayed and their associated Number Edit Boxes values are hardcoded.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks for your help.&lt;BR /&gt;Best Regards,&lt;BR /&gt;François&lt;/P&gt;
&lt;P&gt;#Emmanuel_Romeu&lt;BR /&gt;#James_Bark&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;AA =
Associative Array(
	{
		{"Choice_A", 
			[
			"param_1" =&amp;gt; 2,
			"param 2" =&amp;gt; 15, 
			"param_4" =&amp;gt; .	
			]
		}, 
		{"Choice_B", 
			[
			"param 1" =&amp;gt; 2, 
			"param 3" =&amp;gt; 10,
			"param 4" =&amp;gt; .
			]
		}, 
		{"Choice_C",
			[
			"param 1" =&amp;gt; 3, 
			"param 4" =&amp;gt; ., 
			"param 6" =&amp;gt; 23, 
			"param 7" =&amp;gt; 123
			]
		}
	
	}
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JMP_INTERFACE.png" style="width: 1280px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/48143i5D8337FA838C7262/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JMP_INTERFACE.png" alt="JMP_INTERFACE.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Fri, 09 Jun 2023 16:04:29 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Update-the-content-of-a-DisplayBox-with-an-Associate-Array-when/m-p/579809#M78708</guid>
      <dc:creator>fch_jmp</dc:creator>
      <dc:date>2023-06-09T16:04:29Z</dc:date>
    </item>
    <item>
      <title>Re: Update the content of a DisplayBox with an Associate Array when the selection of a ComboBox changes ?</title>
      <link>https://community.jmp.com/t5/Discussions/Update-the-content-of-a-DisplayBox-with-an-Associate-Array-when/m-p/580222#M78732</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/35291"&gt;@fch_jmp&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;If I understand your question correctly then I think this does what you are looking for:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names default to here(1);

AA = Associative Array( {
	{"Choice_A", ["param_1" =&amp;gt; 2, "param 2" =&amp;gt; 15, "param_4" =&amp;gt; .]},
	{"Choice_B", ["param 1" =&amp;gt; 2, "param 3" =&amp;gt; 10, "param 4" =&amp;gt; .]},
	{"Choice_C", ["param 1" =&amp;gt; 3, "param 4" =&amp;gt; ., "param 6" =&amp;gt; 23, "param 7" =&amp;gt; 123]}
} );


//return a label and 
parambox = function({name,val},
	h list box(
		text box(name),
		nebParam[name] = number edit box(val)
	)
);

updateparams = function({},
	while( !is empty( vlbParams &amp;lt;&amp;lt; child ), (vlbParams &amp;lt;&amp;lt; child) &amp;lt;&amp;lt; delete );
	nebParam = Associative Array();
	for each({{param, value}, i}, AA[cb &amp;lt;&amp;lt; GetSelected()],
		vlbParams &amp;lt;&amp;lt; append(
			parambox(param, value)
		);
	)
);
		
win = new window("cb test",
	cb = Combo Box(
		AA &amp;lt;&amp;lt; Get Keys,
		updateparams();
	),
	vlbParams = v list box(),
	button box("Write to the log",
		for each({{param, value}}, nebParam, print(param || ": " || char(value &amp;lt;&amp;lt; get)));
	)
);
cb &amp;lt;&amp;lt; set(1);
updateparams();&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Note that with this method multiple windows could collide with each other so I would actually use window variables. Try running this once, change your parameters array, and then run it again and note how both windows work independently.&lt;/P&gt;
&lt;LI-SPOILER&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names default to here(1);

AA = Associative Array( {
	{"Choice_A", ["param_1" =&amp;gt; 2, "param 2" =&amp;gt; 15, "param_4" =&amp;gt; .]},
	{"Choice_B", ["param 1" =&amp;gt; 2, "param 3" =&amp;gt; 10, "param 4" =&amp;gt; .]},
	{"Choice_C", ["param 1" =&amp;gt; 3, "param 4" =&amp;gt; ., "param 6" =&amp;gt; 23, "param 7" =&amp;gt; 123]}
} );


//return a label and 
parambox = function({name,val},
	h list box(
		text box(name),
		window:nebParam[name] = number edit box(val)
	)
);

updateparams = function({},
	while( !is empty( window:vlbParams &amp;lt;&amp;lt; child ), (window:vlbParams &amp;lt;&amp;lt; child) &amp;lt;&amp;lt; delete );
	window:nebParam = Associative Array();
	for each({{param, value}, i}, AA[cb &amp;lt;&amp;lt; GetSelected()],
		vlbParams &amp;lt;&amp;lt; append(
			parambox(param, value)
		);
	)
);
		
win = new window("cb test",
	window:AA = AA;
	window:cb = Combo Box(
		window:AA &amp;lt;&amp;lt; Get Keys,
		updateparams();
	),
	window:vlbParams = v list box(),
	button box("Write to the log",
		for each({{param, value}}, window:nebParam, print(param || ": " || char(value &amp;lt;&amp;lt; get)));
	),
	window:cb &amp;lt;&amp;lt; set(1);
	updateparams();
);&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI-SPOILER&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2022 14:05:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Update-the-content-of-a-DisplayBox-with-an-Associate-Array-when/m-p/580222#M78732</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2022-12-12T14:05:53Z</dc:date>
    </item>
    <item>
      <title>Re: Update the content of a DisplayBox with an Associate Array when the selection of a ComboBox changes ?</title>
      <link>https://community.jmp.com/t5/Discussions/Update-the-content-of-a-DisplayBox-with-an-Associate-Array-when/m-p/580418#M78750</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;One relatively efficient way to do this is as follows.&lt;/P&gt;
&lt;P&gt;1) Define parameter/value sets in AAs, one AA for each option.&lt;/P&gt;
&lt;P&gt;2) Place these AAs in a "main" AA.&lt;/P&gt;
&lt;P&gt;3) Use the combobox to select within the "main" AA&lt;/P&gt;
&lt;P&gt;4) For any selection, surface a single tablebox (after deleting the current one, if present), whose rows correspond to entries in the relevant option AA.&lt;/P&gt;
&lt;P&gt;5) When the "go" button is pressed, it is easy to update the relevant "option" AA with whatever entries have been made, and proceed. Here, the mainAA is written to the log so you can see its contents after each press.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Cheers,&lt;/P&gt;
&lt;P&gt;Brady&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

AAopt1 = Associative Array( Words( "p1,p2,p3", "," ), {1, 2, 3} );
AAopt2 = Associative Array( Words( "p1,p4", "," ), {1, 10} );
AAopt3 = Associative Array( Words( "p2,p5,p6,p7", "," ), {2, 6, 12, 20} );
MainAA = Associative Array( Words( "option1,option2,option3", "," ), Eval List( {AAopt1, AAopt2, AAopt3} ) );

nw = New Window( "xx",
	V List Box(
		cb = Combo Box(
			mainAA &amp;lt;&amp;lt; get keys,
			Try( TB &amp;lt;&amp;lt; delete );
			tableVLB &amp;lt;&amp;lt; append(
				tb = Table Box(
					TbSCB = String Col Box( "parameter", mainAA[cb &amp;lt;&amp;lt; get selected] &amp;lt;&amp;lt; Get Keys ),
					TbNCEB = Number Col Edit Box( "value", mainAA[cb &amp;lt;&amp;lt; get selected] &amp;lt;&amp;lt; Get Values )
				)
			);
		),
		tableVLB = V List Box(),
		bb = Button Box( "Go",
			mainAA[cb &amp;lt;&amp;lt; get selected] = Associative Array( TbSCB &amp;lt;&amp;lt; get, TbNCEB &amp;lt;&amp;lt; get );
			Show( mainAA );
		)
	)
);
eval(cb &amp;lt;&amp;lt; get function);
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="brady_brady_0-1670871142302.png" style="width: 999px;"&gt;&lt;img src="https://community.jmp.com/t5/image/serverpage/image-id/48200iF357994288CBB6F4/image-size/large?v=v2&amp;amp;px=999" role="button" title="brady_brady_0-1670871142302.png" alt="brady_brady_0-1670871142302.png" /&gt;&lt;/span&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2022 18:53:13 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Update-the-content-of-a-DisplayBox-with-an-Associate-Array-when/m-p/580418#M78750</guid>
      <dc:creator>brady_brady</dc:creator>
      <dc:date>2022-12-12T18:53:13Z</dc:date>
    </item>
    <item>
      <title>Re: Update the content of a DisplayBox with an Associate Array when the selection of a ComboBox changes ?</title>
      <link>https://community.jmp.com/t5/Discussions/Update-the-content-of-a-DisplayBox-with-an-Associate-Array-when/m-p/580757#M78770</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/6657"&gt;@ih&lt;/a&gt;,&lt;/P&gt;&lt;P&gt;Thanks for your prompt reply.&lt;/P&gt;&lt;P&gt;I took a close look at your script with window variables.&lt;/P&gt;&lt;P&gt;I played with it and made some updates to it.&lt;/P&gt;&lt;P&gt;I still have a few questions/remarks if you don't mind:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;One issue for me is that the order of the parameters to be entered does not follow the order I put them in the Associative Array.&lt;BR /&gt;I would like to have them in the same order as the one in the AA definition. Is that possible ?&lt;/LI&gt;&lt;LI&gt;Can the layout of the couples (TextBox, Number Edit Box) be improved such that they are aligned in two separated columns (I add a screenshot to illustrate - done using LineUp Box-)&lt;BR /&gt;I also tried to replace the V List Box (window:vlbParam) by a Table Box, without success so far.&lt;/LI&gt;&lt;LI&gt;Can a working "recall" Button Box be easily added to this interface ?&lt;/LI&gt;&lt;LI&gt;Lastly, I added some comment to your updated script to explain what I am trying to do.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;Thanks again !&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;François&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2022 23:08:57 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Update-the-content-of-a-DisplayBox-with-an-Associate-Array-when/m-p/580757#M78770</guid>
      <dc:creator>fch_jmp</dc:creator>
      <dc:date>2022-12-12T23:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: Update the content of a DisplayBox with an Associate Array when the selection of a ComboBox changes ?</title>
      <link>https://community.jmp.com/t5/Discussions/Update-the-content-of-a-DisplayBox-with-an-Associate-Array-when/m-p/580758#M78771</link>
      <description>&lt;P&gt;Hi Brady,&lt;/P&gt;&lt;P&gt;Thanks for your prompt reply.&lt;/P&gt;&lt;P&gt;I took a close look at your script, experimented with it and made some updates to it.&lt;/P&gt;&lt;P&gt;I still have a few questions/remarks if you don't mind:&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Splitting the main AA into several AAs, one for each option is OK for me&lt;/LI&gt;&lt;LI&gt;Could your script be adapted in order for the window to be Modal ?&lt;BR /&gt;I would prefer to freeze the window interface and immediately close it once the user clicks "Ok".&lt;/LI&gt;&lt;LI&gt;Can a working "recall" Button Box be easily added to this interface ?&lt;/LI&gt;&lt;LI&gt;Lastly, I added some comment to your updated script to explain what I am trying to do.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;SPAN&gt;Thanks again for your help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;François&lt;/P&gt;</description>
      <pubDate>Mon, 12 Dec 2022 23:10:50 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Update-the-content-of-a-DisplayBox-with-an-Associate-Array-when/m-p/580758#M78771</guid>
      <dc:creator>fch_jmp</dc:creator>
      <dc:date>2022-12-12T23:10:50Z</dc:date>
    </item>
    <item>
      <title>Re: Update the content of a DisplayBox with an Associate Array when the selection of a ComboBox changes ?</title>
      <link>https://community.jmp.com/t5/Discussions/Update-the-content-of-a-DisplayBox-with-an-Associate-Array-when/m-p/581161#M78803</link>
      <description>&lt;P&gt;You can make the dialog modal, as below.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;To make a recall function, you will need to prevent re-initializing the AAs each time the window is opened, by initializing the AAs in another part of the code, that can be separated from the code used to show the window.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Each time the OK button is pressed, in addition to saving the new values to the appropriate AA as is already done, you can save the settings off to global (or, preferably, scoped) variables, and use these variables' values to populate the dialog the next time "recall" is pressed.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );

AAopt1 = Associative Array( Words( "p1,p2,p3", "," ), {1, 2, 3} );
AAopt2 = Associative Array( Words( "p1,p4", "," ), {1, 10} );
AAopt3 = Associative Array( Words( "p2,p5,p6,p7", "," ), {2, 6, 12, 20} );
MainAA = Associative Array( Words( "option1,option2,option3", "," ), Eval List( {AAopt1, AAopt2, AAopt3} ) );


nw = New Window( "xx", &amp;lt;&amp;lt;modal, &amp;lt;&amp;lt; on open(eval(cb &amp;lt;&amp;lt; get function) ),
	V List Box(
		cb = Combo Box(
			mainAA &amp;lt;&amp;lt; get keys,
			Try( TB &amp;lt;&amp;lt; delete );
			tableVLB &amp;lt;&amp;lt; append(
				tb = Table Box(
					TbSCB = String Col Box( "parameter", mainAA[cb &amp;lt;&amp;lt; get selected] &amp;lt;&amp;lt; Get Keys ),
					TbNCEB = Number Col Edit Box( "value", mainAA[cb &amp;lt;&amp;lt; get selected] &amp;lt;&amp;lt; Get Values )
				)
			);
		),
		tableVLB = V List Box(),
		buttonbox("OK", 
			mainAA[cb &amp;lt;&amp;lt; get selected] = Associative Array( TbSCB &amp;lt;&amp;lt; get, TbNCEB &amp;lt;&amp;lt; get );
			Show( mainAA );
		)
	)
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 13 Dec 2022 18:36:52 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Update-the-content-of-a-DisplayBox-with-an-Associate-Array-when/m-p/581161#M78803</guid>
      <dc:creator>brady_brady</dc:creator>
      <dc:date>2022-12-13T18:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: Update the content of a DisplayBox with an Associate Array when the selection of a ComboBox changes ?</title>
      <link>https://community.jmp.com/t5/Discussions/Update-the-content-of-a-DisplayBox-with-an-Associate-Array-when/m-p/581177#M78805</link>
      <description>&lt;P&gt;Associative areas have no order. You cannot impose one. JMP orders the results only as a convenience when you examine the contents with a message such as &amp;lt;&amp;lt; Get Keys.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default to Here( 1 );

// load an associative array in order of C, B, A
aa = Associative Array();
aa["Choice_C"] = ["param 1" =&amp;gt; 3, "param 4" =&amp;gt; ., "param 6" =&amp;gt; 23, "param 7" =&amp;gt; 123];
aa["Choice_B"] = ["param 1" =&amp;gt; 2, "param 3" =&amp;gt; 10, "param 4" =&amp;gt; .];
aa["Choice_A"] = ["param_1" =&amp;gt; 2, "param 2" =&amp;gt; 15, "param_4" =&amp;gt; .];

// examine associative array as a whole (JMP orders output, not content, alphanumerically)
Show(
	aa &amp;lt;&amp;lt; Get Keys,
	aa &amp;lt;&amp;lt; Get Values,
	aa
);

// examine associative array one entry at a time
i = aa &amp;lt;&amp;lt; First;
While( Not( Is Empty( i ) ),
	Show( aa[i] );
	i = aa &amp;lt;&amp;lt; Next( i );
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 13 Dec 2022 19:40:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Update-the-content-of-a-DisplayBox-with-an-Associate-Array-when/m-p/581177#M78805</guid>
      <dc:creator>Mark_Bailey</dc:creator>
      <dc:date>2022-12-13T19:40:10Z</dc:date>
    </item>
    <item>
      <title>Re: Update the content of a DisplayBox with an Associate Array when the selection of a ComboBox changes ?</title>
      <link>https://community.jmp.com/t5/Discussions/Update-the-content-of-a-DisplayBox-with-an-Associate-Array-when/m-p/581480#M78836</link>
      <description>&lt;P&gt;I haven't kept track of whether all of these are answered in other posts yet, but two thoughts:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;If you want to keep parameters ordered you could use arrays inside your associative array, like this:&lt;BR /&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;AA = Associative Array( {
	{"Choice_A", [
		//Array of here to maintain order&lt;BR /&gt;		["name" =&amp;gt; "param_1", "default" =&amp;gt; 2],
		["name" =&amp;gt; "param_2", "default" =&amp;gt; 15],
		["name" =&amp;gt; "param_3", "default" =&amp;gt; .],
	]}
} )&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/LI&gt;
&lt;LI&gt;You could specify text box and number edit box widths to make everything line up, or you could instead use a table with &lt;A href="https://www.jmp.com/support/help/zh/15.2/index.shtml#page/jmp/number-col-edit-boxes.shtml" target="_self"&gt;number col edit boxes&lt;/A&gt;.&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Wed, 14 Dec 2022 15:16:01 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Update-the-content-of-a-DisplayBox-with-an-Associate-Array-when/m-p/581480#M78836</guid>
      <dc:creator>ih</dc:creator>
      <dc:date>2022-12-14T15:16:01Z</dc:date>
    </item>
  </channel>
</rss>

