<?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: Customizing uifigures part 3	</title>
	<atom:link href="https://undocumentedmatlab.com/articles/customizing-uifigures-part-3/feed" rel="self" type="application/rss+xml" />
	<link>https://undocumentedmatlab.com/articles/customizing-uifigures-part-3?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=customizing-uifigures-part-3</link>
	<description>Professional Matlab consulting, development and training</description>
	<lastBuildDate>Wed, 27 Feb 2019 19:30:28 +0000</lastBuildDate>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.3</generator>
	<item>
		<title>
		By: Hoss		</title>
		<link>https://undocumentedmatlab.com/articles/customizing-uifigures-part-3#comment-464617</link>

		<dc:creator><![CDATA[Hoss]]></dc:creator>
		<pubDate>Wed, 27 Feb 2019 19:30:28 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=7169#comment-464617</guid>

					<description><![CDATA[Hi,
Much thanks for this very interesting and useful topic. I read the TableDemo and I was wondering if there was a way to control over one specific cell. For instance, let&#039;s say we have a 3*3 uitable and we want the element located at the 2nd row and 3rd column to have a red background. Is there any way to have access to the widegetId of this specific cell (hopefully without using getWidgetList function)?
Thank you
H]]></description>
			<content:encoded><![CDATA[<p>Hi,<br />
Much thanks for this very interesting and useful topic. I read the TableDemo and I was wondering if there was a way to control over one specific cell. For instance, let&#8217;s say we have a 3*3 uitable and we want the element located at the 2nd row and 3rd column to have a red background. Is there any way to have access to the widegetId of this specific cell (hopefully without using getWidgetList function)?<br />
Thank you<br />
H</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Yair Altman		</title>
		<link>https://undocumentedmatlab.com/articles/customizing-uifigures-part-3#comment-433520</link>

		<dc:creator><![CDATA[Yair Altman]]></dc:creator>
		<pubDate>Fri, 27 Jul 2018 16:24:24 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=7169#comment-433520</guid>

					<description><![CDATA[In reply to &lt;a href=&quot;https://undocumentedmatlab.com/articles/customizing-uifigures-part-3#comment-433517&quot;&gt;Royi&lt;/a&gt;.

@Royi - yes, but this is definitely not easy. Hopefully custom JS integration will be better in future Matlab versions. Perhaps I&#039;ll post something similar to this sometime.]]></description>
			<content:encoded><![CDATA[<p>In reply to <a href="https://undocumentedmatlab.com/articles/customizing-uifigures-part-3#comment-433517">Royi</a>.</p>
<p>@Royi &#8211; yes, but this is definitely not easy. Hopefully custom JS integration will be better in future Matlab versions. Perhaps I&#8217;ll post something similar to this sometime.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Royi		</title>
		<link>https://undocumentedmatlab.com/articles/customizing-uifigures-part-3#comment-433517</link>

		<dc:creator><![CDATA[Royi]]></dc:creator>
		<pubDate>Fri, 27 Jul 2018 16:18:37 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=7169#comment-433517</guid>

					<description><![CDATA[Hi,

Is there a way to import and use other JS UI libraries in MATLAB App Designer?]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>Is there a way to import and use other JS UI libraries in MATLAB App Designer?</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: Andrew		</title>
		<link>https://undocumentedmatlab.com/articles/customizing-uifigures-part-3#comment-418562</link>

		<dc:creator><![CDATA[Andrew]]></dc:creator>
		<pubDate>Fri, 19 Jan 2018 14:21:42 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=7169#comment-418562</guid>

					<description><![CDATA[Thanks for the great head-start on breaking down the new UIFigure/WebWindow class and the interface with CEF. I am wondering if you have had any success with returning values from the CEF rendering to Matlab using JS calls. I can see that WebWindow.Channel has a JavaScriptReturnValue property - I am curious if we can return data from the CEF window to Matlab using this property and the underlying Channel.execute(&#039;executeJS&#039;, options) method. Would be good as an interim solution for handling UIFigure interaction methods by allowing you to set callbacks to a component in CEF using JS (e.g. mouse events etc)and then returning results from the JS function to Matlab via JavaScriptReturnValue. So far all I can get JS to set for JavaScriptReturnValue is a result of a throw in the JS. But I cannot get JS console.error or console.log to return to this property. Perhaps the underlying function in cefclientmlconverter.dll only handles the JS throw return. Interested to hear your thoughts. Keep up the good work.]]></description>
			<content:encoded><![CDATA[<p>Thanks for the great head-start on breaking down the new UIFigure/WebWindow class and the interface with CEF. I am wondering if you have had any success with returning values from the CEF rendering to Matlab using JS calls. I can see that WebWindow.Channel has a JavaScriptReturnValue property &#8211; I am curious if we can return data from the CEF window to Matlab using this property and the underlying Channel.execute(&#8216;executeJS&#8217;, options) method. Would be good as an interim solution for handling UIFigure interaction methods by allowing you to set callbacks to a component in CEF using JS (e.g. mouse events etc)and then returning results from the JS function to Matlab via JavaScriptReturnValue. So far all I can get JS to set for JavaScriptReturnValue is a result of a throw in the JS. But I cannot get JS console.error or console.log to return to this property. Perhaps the underlying function in cefclientmlconverter.dll only handles the JS throw return. Interested to hear your thoughts. Keep up the good work.</p>
]]></content:encoded>
		
			</item>
		<item>
		<title>
		By: David		</title>
		<link>https://undocumentedmatlab.com/articles/customizing-uifigures-part-3#comment-417152</link>

		<dc:creator><![CDATA[David]]></dc:creator>
		<pubDate>Fri, 01 Dec 2017 08:25:04 +0000</pubDate>
		<guid isPermaLink="false">http://undocumentedmatlab.com/?p=7169#comment-417152</guid>

					<description><![CDATA[Very useful resource. Once again the user community is way ahead of MathWorks developers. It&#039;s about time they sorted out the ability to customise the appearance of individual cells in a table.]]></description>
			<content:encoded><![CDATA[<p>Very useful resource. Once again the user community is way ahead of MathWorks developers. It&#8217;s about time they sorted out the ability to customise the appearance of individual cells in a table.</p>
]]></content:encoded>
		
			</item>
	</channel>
</rss>
