<?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 Hyperlinks to Table box rows in Discussions</title>
    <link>https://community.jmp.com/t5/Discussions/Hyperlinks-to-Table-box-rows/m-p/755830#M93788</link>
    <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to add hyperlinks to the table box rows?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Cities.jmp", invisible );

New Window( "", dtb = Data Table Box( dt ) );

:Latitude &amp;lt;&amp;lt; Set Property(
	"Event Handler",
	Event Handler(
		Click(JSL Quote(
Function( {thisTable, thisColumn, iRow},
	Web(
		"https://www.google.com/maps/@" || Char( thisTable:latitude[irow] ) || "," ||
		Char( thisTable:longitude[irow] ) || ",12z"
	)
))		,
			Tip( JSL Quote(Function( {thisTable, thisColumn, iRow}, "Open " || Char ( thisTable:iMVInumber[ iRow ] )  || " in your browswer."; ); ) ),
			Color( JSL Quote( Function( {thisTable, thisColumn, iRow}, 5;); ) )
		)
	)
);
dtb &amp;lt;&amp;lt; set selectable rows( 1 );&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sat, 18 May 2024 17:41:53 GMT</pubDate>
    <dc:creator>Jackie_</dc:creator>
    <dc:date>2024-05-18T17:41:53Z</dc:date>
    <item>
      <title>Hyperlinks to Table box rows</title>
      <link>https://community.jmp.com/t5/Discussions/Hyperlinks-to-Table-box-rows/m-p/755830#M93788</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to add hyperlinks to the table box rows?&lt;BR /&gt;&lt;BR /&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here( 1 );
dt = Open( "$SAMPLE_DATA/Cities.jmp", invisible );

New Window( "", dtb = Data Table Box( dt ) );

:Latitude &amp;lt;&amp;lt; Set Property(
	"Event Handler",
	Event Handler(
		Click(JSL Quote(
Function( {thisTable, thisColumn, iRow},
	Web(
		"https://www.google.com/maps/@" || Char( thisTable:latitude[irow] ) || "," ||
		Char( thisTable:longitude[irow] ) || ",12z"
	)
))		,
			Tip( JSL Quote(Function( {thisTable, thisColumn, iRow}, "Open " || Char ( thisTable:iMVInumber[ iRow ] )  || " in your browswer."; ); ) ),
			Color( JSL Quote( Function( {thisTable, thisColumn, iRow}, 5;); ) )
		)
	)
);
dtb &amp;lt;&amp;lt; set selectable rows( 1 );&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 18 May 2024 17:41:53 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hyperlinks-to-Table-box-rows/m-p/755830#M93788</guid>
      <dc:creator>Jackie_</dc:creator>
      <dc:date>2024-05-18T17:41:53Z</dc:date>
    </item>
    <item>
      <title>Re: Hyperlinks to Table box rows</title>
      <link>https://community.jmp.com/t5/Discussions/Hyperlinks-to-Table-box-rows/m-p/755852#M93790</link>
      <description>&lt;P&gt;I think you might have to use Col Box with Button Boxes&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-jsl"&gt;Names Default To Here(1);
New Window("Example",
	Table Box(
		String Col Box("strings", {"x", "y", "z"}),
		Col Box(
			"boxes",
			Button Box("JMP", Web("www.jmp.com"), &amp;lt;&amp;lt; Underline Style(1)),
			Button Box("Google", Web("www.google.com"), &amp;lt;&amp;lt; Underline Style(1)),
		)
	);
);&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 18 May 2024 18:04:21 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hyperlinks-to-Table-box-rows/m-p/755852#M93790</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-05-18T18:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Hyperlinks to Table box rows</title>
      <link>https://community.jmp.com/t5/Discussions/Hyperlinks-to-Table-box-rows/m-p/755858#M93794</link>
      <description>&lt;P&gt;Thanks &lt;a href="https://community.jmp.com/t5/user/viewprofilepage/user-id/14366"&gt;@jthi&lt;/a&gt;.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I am unable to get the row values in the web link. Can you share an example to get the row values in the web() function?&lt;/P&gt;</description>
      <pubDate>Sat, 18 May 2024 21:59:09 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hyperlinks-to-Table-box-rows/m-p/755858#M93794</guid>
      <dc:creator>Jackie_</dc:creator>
      <dc:date>2024-05-18T21:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: Hyperlinks to Table box rows</title>
      <link>https://community.jmp.com/t5/Discussions/Hyperlinks-to-Table-box-rows/m-p/755995#M93802</link>
      <description>&lt;P&gt;You wish to know how to build Table Box with hyperlinks using same example as in your first post? Should the table box contain all the columns from data table or only the coordinates / name of the city?&lt;/P&gt;</description>
      <pubDate>Sun, 19 May 2024 14:33:44 GMT</pubDate>
      <guid>https://community.jmp.com/t5/Discussions/Hyperlinks-to-Table-box-rows/m-p/755995#M93802</guid>
      <dc:creator>jthi</dc:creator>
      <dc:date>2024-05-19T14:33:44Z</dc:date>
    </item>
  </channel>
</rss>

