<?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 Updating existing Table Box Row in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Updating-existing-Table-Box-Row/m-p/56087#M31483</link>
    <description>&lt;P&gt;Hello&amp;nbsp;JMP Community,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I currently have on my interface a Table Box loading data from a JMP dt.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a way to "update"&amp;nbsp;Table Box row? Or do I need to refresh the whole Table box? I was trying to update a row for the sake of performance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
    <pubDate>Sat, 10 Jun 2023 23:13:41 GMT</pubDate>
    <dc:creator>m4mazzotti</dc:creator>
    <dc:date>2023-06-10T23:13:41Z</dc:date>
    <item>
      <title>Updating existing Table Box Row</title>
      <link>https://community.jmp.com/t5/Discussions/Updating-existing-Table-Box-Row/m-p/56087#M31483</link>
      <description>&lt;P&gt;Hello&amp;nbsp;JMP Community,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I currently have on my interface a Table Box loading data from a JMP dt.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there a way to "update"&amp;nbsp;Table Box row? Or do I need to refresh the whole Table box? I was trying to update a row for the sake of performance.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thanks!&lt;/P&gt;</description>
      <pubDate>Sat, 10 Jun 2023 23:13:41 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Updating-existing-Table-Box-Row/m-p/56087#M31483</guid>
      <dc:creator>m4mazzotti</dc:creator>
      <dc:date>2023-06-10T23:13:41Z</dc:date>
    </item>
    <item>
      <title>Re: Upading Table Box Row</title>
      <link>https://community.jmp.com/t5/Discussions/Updating-existing-Table-Box-Row/m-p/56108#M31490</link>
      <description>&lt;P&gt;A TableBox is comprised of mutiple StringColEditBox and NumberColEditBox display boxes. You can add and remove elemets to these column display boxes.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;However, it might be easier to insert and delete rows.&amp;nbsp; This is a modification of Scripting Index scripts.&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 );
New Window( "test",
	tb = Table Box(
		scb1 = String Col Edit Box( "string col", {"a", "c", "d", "d", "e"} ),
		ncb1 = Number Col Edit Box( "number col", {1,2,3,4,5} )
	)
);
wait(2);
tb &amp;lt;&amp;lt; delete row(2);
tb &amp;lt;&amp;lt; insert row( 2, {"b", 2} );

tb&amp;lt;&amp;lt;delete row(3);
tb &amp;lt;&amp;lt; insert row(3, {"c", 3});&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 08:01:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Updating-existing-Table-Box-Row/m-p/56108#M31490</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-04-30T08:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: Upading Table Box Row</title>
      <link>https://community.jmp.com/t5/Discussions/Updating-existing-Table-Box-Row/m-p/56115#M31496</link>
      <description>&lt;P&gt;That is already a step forward. Much better thank reloading the whole table. Thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;To build on top of your example, this is what I was trying to do. Lets say i wanted to update that first "a" with a "z": But it just didnt work.&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 );
New Window( "test",
	tb = Table Box(
		scb1 = String Col Edit Box( "string col", {"a", "c", "d", "d", "e"} ),
		ncb1 = Number Col Edit Box( "number col", {1,2,3,4,5} )
	)
);
wait(2);
scb1[1] = "a";&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 12:35:45 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Updating-existing-Table-Box-Row/m-p/56115#M31496</guid>
      <dc:creator>m4mazzotti</dc:creator>
      <dc:date>2018-04-30T12:35:45Z</dc:date>
    </item>
    <item>
      <title>Re: Upading Table Box Row</title>
      <link>https://community.jmp.com/t5/Discussions/Updating-existing-Table-Box-Row/m-p/56118#M31498</link>
      <description>&lt;P&gt;I don't see any other way than setting the entire row or using get and set the column values.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
New Window( "test",
	tb = Table Box(
		scb1 = String Col Edit Box( "string col", {"a", "c", "d", "d", "e"} ),
		ncb1 = Number Col Edit Box( "number col", {1,2,3,4,5} )
	)
);
wait(2);
_xx = scb1&amp;lt;&amp;lt;get;
_xx[1] ="z";
scb1 &amp;lt;&amp;lt; set( _xx);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 30 Apr 2018 12:47:10 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Updating-existing-Table-Box-Row/m-p/56118#M31498</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-04-30T12:47:10Z</dc:date>
    </item>
    <item>
      <title>Re: Upading Table Box Row</title>
      <link>https://community.jmp.com/t5/Discussions/Updating-existing-Table-Box-Row/m-p/56120#M31499</link>
      <description>&lt;P&gt;There is also the option of createing a data table from the columns you want using the Data Table Col Box(). When you update the table the display is updated.&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Big Class.jmp" );
nw = New Window( "Example",
	Table Box( Data Table Col Box( :name ), Data Table Col Box( :height ) )
);
nw[Table Box( 1 )] &amp;lt;&amp;lt; set scrollable( 10, 0 );
wait(2);
:height[1]=60;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 30 Apr 2018 12:56:43 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Updating-existing-Table-Box-Row/m-p/56120#M31499</guid>
      <dc:creator>gzmorgan0</dc:creator>
      <dc:date>2018-04-30T12:56:43Z</dc:date>
    </item>
    <item>
      <title>Re: Upading Table Box Row</title>
      <link>https://community.jmp.com/t5/Discussions/Updating-existing-Table-Box-Row/m-p/56458#M31720</link>
      <description>The problem i was having using Data Table Col Box is that i was not able to hide rows that i didnt want to show.&lt;BR /&gt;&lt;BR /&gt;I got one big data with data from multiple customers and I only want to show for 1 customer, and I was trying to avoid subsets because I am updating the table as the user edit a Numeric Col Box.&lt;BR /&gt;</description>
      <pubDate>Fri, 04 May 2018 18:13:16 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Updating-existing-Table-Box-Row/m-p/56458#M31720</guid>
      <dc:creator>m4mazzotti</dc:creator>
      <dc:date>2018-05-04T18:13:16Z</dc:date>
    </item>
  </channel>
</rss>

