Hi,
I am using Code Composer version 6.1.0.00104. The problem I have is whenever I create a new html file (let's say new.html) in addition to the original app.html, the preview of the new.html is blank.
The reason for the new html is to create an Event for the widget, so when I click on an object defined in app.html, it pops up the entire contents of new.html. So far, it has been a blank window upon opening, even there are widgets in it.
This is what I added in the Javascript file app.js, where the function is called in the "onclick" Event in one of the widgets in app.html:
function OpenNewWindow() {
var newwindow = window.open('new.html');
newwindow.focus();
}
Since the preview is blank, the window is blank upon opening. Why is the preview blank?
Does GUI Composer only accept one html file? How do I make GUI Composer open a non-blank window when I click on an object?
Thank you for your help,
Sam