<?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: GUI formatting using HTML	</title>
	<atom:link href="https://undocumentedmatlab.com/articles/gui-formatting-using-html/feed" rel="self" type="application/rss+xml" />
	<link>https://undocumentedmatlab.com/articles/gui-formatting-using-html?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=gui-formatting-using-html</link>
	<description>Professional Matlab consulting, development and training</description>
	<lastBuildDate>Tue, 29 Oct 2019 15:27:59 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.2</generator>
	<item>
		<title>
		By: fareed		</title>
		<link>https://undocumentedmatlab.com/articles/gui-formatting-using-html#comment-428015</link>

		<dc:creator><![CDATA[fareed]]></dc:creator>
		<pubDate>Fri, 01 Jun 2018 14:55:07 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=6877#comment-428015</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/gui-formatting-using-html#comment-428008&quot;&gt;fareed&lt;/a&gt;.

Thank you for your reply. You are awesome , have a nice day sir.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/gui-formatting-using-html#comment-428008">fareed</a>.</p>
<p>Thank you for your reply. You are awesome , have a nice day sir.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/gui-formatting-using-html#comment-428011</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Fri, 01 Jun 2018 14:40:21 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=6877#comment-428011</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/gui-formatting-using-html#comment-428008&quot;&gt;fareed&lt;/a&gt;.

AppDesigner creates figures that do not [currently] support HTML or Java customizations. To use those, you need to use legacy figures using GUIDE or the figure/uicontrol/uitable functions.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/gui-formatting-using-html#comment-428008">fareed</a>.</p>
<p>AppDesigner creates figures that do not [currently] support HTML or Java customizations. To use those, you need to use legacy figures using GUIDE or the figure/uicontrol/uitable functions.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: fareed		</title>
		<link>https://undocumentedmatlab.com/articles/gui-formatting-using-html#comment-428008</link>

		<dc:creator><![CDATA[fareed]]></dc:creator>
		<pubDate>Fri, 01 Jun 2018 14:28:18 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=6877#comment-428008</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/gui-formatting-using-html#comment-428001&quot;&gt;Fareed&lt;/a&gt;.

I could not display the image in appdesigner uitable. It is a known for this method? 

Sorry to ask you this because i have been learning to design gui using appdesigner and testing it ability to run task that i can think of. I am not sure whether the appdesigner is relatively new so it has its limit or i need to start with GUIDE first to fully utilise matlab gui design. 

&lt;pre lang=&quot;matlab&quot;&gt;
%% This work by showing tables inside a new figure.
pic = fullfile(matlabroot, &#039;toolbox&#039;, &#039;images&#039;, &#039;icons&#039;, &#039;icon_info.png&#039;);
uitable(&#039;Data&#039;, {[&#039;&#039;]})

% Does not work for uitable in app designer
app.UITable2.Data = ({[&#039;&#039;]});
&lt;/pre&gt;]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/gui-formatting-using-html#comment-428001">Fareed</a>.</p>
<p>I could not display the image in appdesigner uitable. It is a known for this method? </p>
<p>Sorry to ask you this because i have been learning to design gui using appdesigner and testing it ability to run task that i can think of. I am not sure whether the appdesigner is relatively new so it has its limit or i need to start with GUIDE first to fully utilise matlab gui design. </p>
<pre lang="matlab">
%% This work by showing tables inside a new figure.
pic = fullfile(matlabroot, 'toolbox', 'images', 'icons', 'icon_info.png');
uitable('Data', {['']})

% Does not work for uitable in app designer
app.UITable2.Data = ({['']});
</pre>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/gui-formatting-using-html#comment-428003</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Fri, 01 Jun 2018 13:46:21 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=6877#comment-428003</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/gui-formatting-using-html#comment-428001&quot;&gt;Fareed&lt;/a&gt;.

@Fareed - no, it is also possible to use a Java table cell renderer, but this requires knowledge of Java and a deeper use of undocumented aspects (i.e. accessing the uitable&#039;s underlying JTable component, and then setting its column cell renderer accordingly). The HTML method that I described is much simpler to implement, so it is more suitable to the majority of users, but if you know your way around Java then a table cell renderer might well be useful for you.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/gui-formatting-using-html#comment-428001">Fareed</a>.</p>
<p>@Fareed &#8211; no, it is also possible to use a Java table cell renderer, but this requires knowledge of Java and a deeper use of undocumented aspects (i.e. accessing the uitable&#8217;s underlying JTable component, and then setting its column cell renderer accordingly). The HTML method that I described is much simpler to implement, so it is more suitable to the majority of users, but if you know your way around Java then a table cell renderer might well be useful for you.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Fareed		</title>
		<link>https://undocumentedmatlab.com/articles/gui-formatting-using-html#comment-428001</link>

		<dc:creator><![CDATA[Fareed]]></dc:creator>
		<pubDate>Fri, 01 Jun 2018 13:31:55 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=6877#comment-428001</guid>

					<description><![CDATA[Hi Yair,

Is this the only way to display image inside uitable cell? I need to pass an output from imcrop into it. Do i really need to save it as an image file first then call it by the html image linking?]]></description>
			<content:encoded><![CDATA[<p>Hi Yair,</p>
<p>Is this the only way to display image inside uitable cell? I need to pass an output from imcrop into it. Do i really need to save it as an image file first then call it by the html image linking?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: OrO		</title>
		<link>https://undocumentedmatlab.com/articles/gui-formatting-using-html#comment-404434</link>

		<dc:creator><![CDATA[OrO]]></dc:creator>
		<pubDate>Thu, 06 Apr 2017 06:01:24 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=6877#comment-404434</guid>

					<description><![CDATA[Your tips/solutions are always useful.
I regret that since all these years, Matlab still does not fully support HTML/CSS. It would help considerably the customization of GUI.]]></description>
			<content:encoded><![CDATA[<p>Your tips/solutions are always useful.<br />
I regret that since all these years, Matlab still does not fully support HTML/CSS. It would help considerably the customization of GUI.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
