Hi,
I'm using JET (v4.1.0) and was trying to make a dynamic title for an oj-dialog .
I created an observable whose value is dynamically set based on the user action and the change should be reflected in the header when the dialog is opened.
This however is not working. Does <oj-dialog/> support this?
<!-- this is for the dialog that pops up for editing and creating -->
<div id="dialogWrapper">
\<oj-dialog style="display:none" id="dataDialog" title='\[\[dialogTitle\]\]'>
\<div class="oj-form-layout">
....
....
And the observable is like this:
self.dialogTitle = ko.observable('initial title');
The dialog title displays like this:

Am I missing something?
Thanks