Hi Isomorphic,
I'm trying to display the currently used version in an easy to copy manner.
I started with the latest 11.1d Feature Explorer and came up with with code that works as expected in a Bookmark:
It also works in the 11.0 documentation application and the 11.0 Feature Explorer
It does not work in the current 6.0/11.0 SmartGWT showcase and also not in my 5.1p SmartGWT application.
What am I doing wrong here?
The Developer Console stays empty and I also don't have JS errors in the browser console. I tested with Chromium 56.
Thank you & Best regards
Blama
I'm trying to display the currently used version in an easy to copy manner.
I started with the latest 11.1d Feature Explorer and came up with with code that works as expected in a Bookmark:
Code:
javascript: isc.Window.create({ title: "Used SmartClient version", autoCenter: true, isModal: true, showModalMask: true, showMinimizeButton: false, width: 460, height: 60, items: [ isc.DynamicForm.create({ autoFocus: true, width: 390, colWidths: [60, "*"], items:[ { width: 390, type: "text", name: "Version", title: "Version", selectOnFocus: true, wrapTitle: false, defaultValue: isc.version } ] }) ] });
It does not work in the current 6.0/11.0 SmartGWT showcase and also not in my 5.1p SmartGWT application.
What am I doing wrong here?
The Developer Console stays empty and I also don't have JS errors in the browser console. I tested with Chromium 56.
Thank you & Best regards
Blama
Comment