<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>
	Comments on: Uitable customization report	</title>
	<atom:link href="https://undocumentedmatlab.com/articles/uitable-customization-report/feed" rel="self" type="application/rss+xml" />
	<link>https://undocumentedmatlab.com/articles/uitable-customization-report?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=uitable-customization-report</link>
	<description>Professional Matlab consulting, development and training</description>
	<lastBuildDate>Tue, 25 Apr 2023 08:12:38 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>
	<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/uitable-customization-report#comment-521249</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Tue, 25 Apr 2023 08:12:38 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2396#comment-521249</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/uitable-customization-report#comment-521248&quot;&gt;Kei&lt;/a&gt;.

Kei - this is possible, I believe that I saw this ability somewhere, a few years ago. I don&#039;t remember exactly where, it will require a bit of research, but I&#039;m pretty sure that this is possible. 
Contact me offline (altmany at gmail) if you wish me to spend some time to look this up for you.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/uitable-customization-report#comment-521248">Kei</a>.</p>
<p>Kei &#8211; this is possible, I believe that I saw this ability somewhere, a few years ago. I don&#8217;t remember exactly where, it will require a bit of research, but I&#8217;m pretty sure that this is possible.<br />
Contact me offline (altmany at gmail) if you wish me to spend some time to look this up for you.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Kei		</title>
		<link>https://undocumentedmatlab.com/articles/uitable-customization-report#comment-521248</link>

		<dc:creator><![CDATA[Kei]]></dc:creator>
		<pubDate>Tue, 25 Apr 2023 05:37:01 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2396#comment-521248</guid>

					<description><![CDATA[Hello Yair
Thank you for this great article.
I would like to freeze first two columns in uitable. Do you know if such option is available?
Since looks like this option is not available as a default, I tried to create two uitables, one is for the headers I want to freeze and other is for the data. However, I ran into another issue that I need to syncronize scroll bars of two uitables, that is not supported as default too.
Thank you!]]></description>
			<content:encoded><![CDATA[<p>Hello Yair<br />
Thank you for this great article.<br />
I would like to freeze first two columns in uitable. Do you know if such option is available?<br />
Since looks like this option is not available as a default, I tried to create two uitables, one is for the headers I want to freeze and other is for the data. However, I ran into another issue that I need to syncronize scroll bars of two uitables, that is not supported as default too.<br />
Thank you!</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Santiago		</title>
		<link>https://undocumentedmatlab.com/articles/uitable-customization-report#comment-514473</link>

		<dc:creator><![CDATA[Santiago]]></dc:creator>
		<pubDate>Fri, 22 Jul 2022 15:43:51 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2396#comment-514473</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/uitable-customization-report#comment-514468&quot;&gt;Yair Altman&lt;/a&gt;.

It works perfectly.
Thanks so much.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/uitable-customization-report#comment-514468">Yair Altman</a>.</p>
<p>It works perfectly.<br />
Thanks so much.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/uitable-customization-report#comment-514468</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Fri, 22 Jul 2022 10:19:40 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2396#comment-514468</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/uitable-customization-report#comment-514459&quot;&gt;Santiago&lt;/a&gt;.

Santiago - you can get the mouse X,Y positions from the Java eventData object (&lt;i&gt;getX(), getY()&lt;/i&gt;), convert this into a point (&lt;code&gt;p=java.awt.Point(x,y)&lt;/code&gt;), then use the JTable methods &lt;i&gt;rowAtPoint(p), columnAtPoint(p)&lt;/i&gt; to get the corresponding Java row/column indices. It gets a bit trickier when you use table wrappers (e.g. for sorting/filtering) but it&#039;s the same basic idea.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/uitable-customization-report#comment-514459">Santiago</a>.</p>
<p>Santiago &#8211; you can get the mouse X,Y positions from the Java eventData object (<i>getX(), getY()</i>), convert this into a point (<code>p=java.awt.Point(x,y)</code>), then use the JTable methods <i>rowAtPoint(p), columnAtPoint(p)</i> to get the corresponding Java row/column indices. It gets a bit trickier when you use table wrappers (e.g. for sorting/filtering) but it&#8217;s the same basic idea.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Santiago		</title>
		<link>https://undocumentedmatlab.com/articles/uitable-customization-report#comment-514459</link>

		<dc:creator><![CDATA[Santiago]]></dc:creator>
		<pubDate>Thu, 21 Jul 2022 18:38:19 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2396#comment-514459</guid>

					<description><![CDATA[Hi Yair.
I&#039;m using the MouseReleasedCallback but I need to get the indices of the selected cell. I can get them without problems with left clicks but, if I try to do it with a right click the selectedrow and selectedcolumn show the last selected cell (with a left click). is there a  way to get the newly selected cell (with a right click)?
thanks in advanced,]]></description>
			<content:encoded><![CDATA[<p>Hi Yair.<br />
I&#8217;m using the MouseReleasedCallback but I need to get the indices of the selected cell. I can get them without problems with left clicks but, if I try to do it with a right click the selectedrow and selectedcolumn show the last selected cell (with a left click). is there a  way to get the newly selected cell (with a right click)?<br />
thanks in advanced,</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/uitable-customization-report#comment-511053</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Thu, 10 Jun 2021 15:33:26 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2396#comment-511053</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/uitable-customization-report#comment-511052&quot;&gt;Luis Santiago&lt;/a&gt;.

Yes, the report is still available. You can &lt;a href=&quot;https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&#038;business=altmany@gmail.com&#038;currency_code=USD&#038;amount=29&#038;return=&#038;item_name=Matlab-uitable-report&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;get it here&lt;/a&gt;.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/uitable-customization-report#comment-511052">Luis Santiago</a>.</p>
<p>Yes, the report is still available. You can <a href="https://www.paypal.com/cgi-bin/webscr?cmd=_xclick&amp;business=altmany@gmail.com&amp;currency_code=USD&amp;amount=29&amp;return=&amp;item_name=Matlab-uitable-report" target="_blank" rel="nofollow">get it here</a>.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Luis Santiago		</title>
		<link>https://undocumentedmatlab.com/articles/uitable-customization-report#comment-511052</link>

		<dc:creator><![CDATA[Luis Santiago]]></dc:creator>
		<pubDate>Thu, 10 Jun 2021 14:05:37 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2396#comment-511052</guid>

					<description><![CDATA[Hi Yair.
Your articles are excellent and, even now, they are still applicable. Is the uitable report still available? 
I&#039;d really like getting it.]]></description>
			<content:encoded><![CDATA[<p>Hi Yair.<br />
Your articles are excellent and, even now, they are still applicable. Is the uitable report still available?<br />
I&#8217;d really like getting it.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Reza		</title>
		<link>https://undocumentedmatlab.com/articles/uitable-customization-report#comment-474299</link>

		<dc:creator><![CDATA[Reza]]></dc:creator>
		<pubDate>Fri, 12 Apr 2019 01:21:31 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2396#comment-474299</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/uitable-customization-report#comment-470785&quot;&gt;Nivetha&lt;/a&gt;.

The reason is that matlab look to every field as text value. 
I think you must use from main Java table... &quot;com.jidesoft.grid.SortableTable&quot;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/uitable-customization-report#comment-470785">Nivetha</a>.</p>
<p>The reason is that matlab look to every field as text value.<br />
I think you must use from main Java table&#8230; &#8220;com.jidesoft.grid.SortableTable&#8221;</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/uitable-customization-report#comment-471158</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Fri, 29 Mar 2019 13:31:38 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2396#comment-471158</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/uitable-customization-report#comment-470785&quot;&gt;Nivetha&lt;/a&gt;.

@Nivetha - I discuss the issue of uitable sorting in my uitable report.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/uitable-customization-report#comment-470785">Nivetha</a>.</p>
<p>@Nivetha &#8211; I discuss the issue of uitable sorting in my uitable report.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Nivetha		</title>
		<link>https://undocumentedmatlab.com/articles/uitable-customization-report#comment-470785</link>

		<dc:creator><![CDATA[Nivetha]]></dc:creator>
		<pubDate>Thu, 28 Mar 2019 03:53:10 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=2396#comment-470785</guid>

					<description><![CDATA[Hi Yair,

The uitable is getting sorted like 1,10,11,2,22,3,33 instead of 1,2,3..... in R2016b version.

Any fix for this?]]></description>
			<content:encoded><![CDATA[<p>Hi Yair,</p>
<p>The uitable is getting sorted like 1,10,11,2,22,3,33 instead of 1,2,3&#8230;.. in R2016b version.</p>
<p>Any fix for this?</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
