I would like to welcome back guest blogger Iliya Romm of Israel’s Technion Turbomachinery and Heat Transfer Laboratory. Today Iliya will discuss how to assign Matlab callbacks to JavaScript events in the new web-based uifigures. Other posts on customizations of web-based Matlab GUI can be found here.
On several occasions (including the previous post by Khris Griffis) I came across people who were really missing the ability to have Matlab respond to various JavaScript (JS) events. While MathWorks are working on their plans to incorporate something similar to this in future releases, we’ll explore the internal tools already available, in the hopes of finding a suitable intermediate solution.
Today I’d like to share a technique I’ve been experimenting with, allowing Matlab to respond to pretty much any JS event to which we can attach a listener. This is an overview of how it works:
- create a UIFigure with the desired contents, and add to it (at least) one more dummy control, which has an associated Matlab callback.
- execute a JS snippet that programmatically interacts with the dummy control, whenever some event-of-interest happens, causing the Matlab callback to fire.
- query the
webWindow
, from within the Matlab callback, to retrieve any additional information (“payload”) that the JS passed.
This approach allows, for example, to easily respond to mouse events:

Consider the code below, which demonstrates different ways of responding to JS events. To run it, save the .m file function below (direct download link) and the four accompanying .js files in the same folder, then run jsEventDemo(demoNum)
, where demoNum
is 1..4. Note: this code was developed on R2018a, unfortunately I cannot guarantee it works on other releases.
function varargout = jsEventDemo(demoNum) % Handle inputs and outputs if ~nargin demoNum = 4; end if ~nargout varargout = {}; end % Create a simple figure: hFig = uifigure('Position',[680,680,330,240],'Resize','off'); hTA = uitextarea(hFig, 'Value', 'Psst... Come here...!','Editable','off'); [hWin,idTA] = mlapptools.getWebElements(hTA); % Open in browser (DEBUG): % mlapptools.waitForFigureReady(hFig); mlapptools.unlockUIFig(hFig); pause(1); % web(hWin.URL,'-browser') % Prepare the JS command corresponding to the requested demo (1-4) switch demoNum % Demo #1: Respond to mouse events, inside JS, using "onSomething" bindings: case 1 % Example from: https://dojotoolkit.org/documentation/tutorials/1.10/events/#dom-events jsCommand = sprintf(fileread('jsDemo1.js'), idTA.ID_val); % Demo #2: Respond to mouse click events, inside JS, using pub/sub: case 2 % Example from: https://dojotoolkit.org/documentation/tutorials/1.10/events/#publish-subscribe hTA.Value = 'Click here and see what happens'; jsCommand = sprintf(fileread('jsDemo2.js'), idTA.ID_val); % Demo #3: Trigger Matlab callbacks programmatically from JS by "pressing" a fake button: case 3 hB = uibutton(hFig, 'Visible', 'off', 'Position', [0 0 0 0], ... 'ButtonPushedFcn', @fakeButtonCallback); [~,idB] = mlapptools.getWebElements(hB); jsCommand = sprintf(fileread('jsDemo3.js'), idTA.ID_val, idB.ID_val); % Demo 4: Trigger Matlab callbacks and include a "payload" (i.e. eventData) JSON: case 4 hB = uibutton(hFig, 'Visible', 'off', 'Position', [0 0 0 0],... 'ButtonPushedFcn', @(varargin)smartFakeCallback(varargin{:}, hWin)); [~,idB] = mlapptools.getWebElements(hB); jsCommand = sprintf(fileread('jsDemo4.js'), idTA.ID_val, idB.ID_val); end % switch % Execute the JS command hWin.executeJS(jsCommand); end % Matlab callback function used by Demo #3 function fakeButtonCallback(obj, eventData) %#ok<INUSD> disp('Callback activated!'); pause(2); end % Matlab callback function used by Demo #4 function smartFakeCallback(obj, eventData, hWin) % Retrieve and decode payload JSON: payload = jsondecode(hWin.executeJS('payload')); % Print payload summary to the command window: disp(['Responding to the fake ' eventData.EventName ... ' event with the payload: ' jsonencode(payload) '.']); % Update the TextArea switch char(payload.action) case 'enter', act_txt = 'entered'; case 'leave', act_txt = 'left'; end str = ["Mouse " + act_txt + ' from: '; ... "(" + payload.coord(1) + ',' + payload.coord(2) + ')']; obj.Parent.Children(2).Value = str; end
Several thoughts:
- The attached .js files will not work by themselves, rather, they require sprintf to replace the
%s
with valid widget IDs. Of course, these could be made into proper JS functions. - Instead of loading the JS files using fileread, we could place the JS code directly in the
jsCommand
variable, as a Matlab string (char array) - I tried getting it to work with a
textarea
control, so that we would get the payload right in the callback’seventData
object in Matlab, Unfortunately, I couldn’t get it to fire programmatically (solutions like this didn’t work). So instead, I store the payload as JSON, and retrieve it withjsondecode(hWin.executeJS('payload'))
in thesmartFakeCallback
function.
JavaScript files
- jsDemo1.js (direct download link):
require(["dojo/on", "dojo/dom", "dojo/dom-style", "dojo/mouse"], function(on, dom, domStyle, mouse) { var myDiv = dom.byId("%s"); on(myDiv, mouse.enter, function(evt){ domStyle.set(myDiv, "backgroundColor", "red"); }); on(myDiv, mouse.leave, function(evt){ domStyle.set(myDiv, "backgroundColor", ""); }); });
- jsDemo2.js (direct download link):
require(["dojo/on", "dojo/topic", "dojo/dom"], function(on, topic, dom) { var myDiv = dom.byId("%s"); on(myDiv, "click", function() { topic.publish("alertUser", "Your click was converted into an alert!"); }); topic.subscribe("alertUser", function(text){ alert(text); }); });
- jsDemo3.js (direct download link):
require(["dojo/on", "dojo/dom", "dojo/dom-style", "dojo/mouse"], function(on, dom, domStyle, mouse) { var myDiv = dom.byId("%s"); var fakeButton = dom.byId("%s"); on(myDiv, mouse.enter, function(evt){ fakeButton.click(); }); });
- jsDemo4.js (direct download link):
var payload = []; require(["dojo/on", "dojo/dom", "dojo/topic", "dojo/mouse"], function(on, dom, topic, mouse) { var myDiv = dom.byId("%s"); var fakeButton = dom.byId("%s"); topic.subscribe("sendToMatlab", function(data){ payload = data; fakeButton.click(); }); on(myDiv, mouse.enter, function(evt){ data = {action: "enter", coord: [evt.clientX, evt.clientY]}; topic.publish("sendToMatlab", data); }); on(myDiv, mouse.leave, function(evt){ data = {action: "leave", coord: [evt.clientX, evt.clientY]}; topic.publish("sendToMatlab", data); }); });
Conclusions
As you can see, this opens some interesting possibilities, and I encourage you to experiment with them yourself! This feature will likely be added to the mlapptools
toolbox as soon as an intuitive API is conceived.
If you have any comments or questions about the code above, or just want to tell me how you harnessed this mechanism to upgrade your uifigure (I would love to hear about it!), feel free to leave a message below the gist on which this post is based (this way I get notifications!).