You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Great work, Matti! I already converted one of my Highcharts add-on (multi-module project) to your template.
The add-on is a JS component wrapper. Thus, no GWT is involved here. However, for the demo UI I always used the AceEditor for manipulating the JS code describing the chart. I wonder if it's possible to use such GWT add-ons inside a demo UI in combination with your template? Maybe with Vaadin 7.7?
I made several experiments with archetype-vaadin-gwt-addon trying to copy all the GWT relevant stuff to my project, but it did not work. I also tried to use Vaadin 7.7.0.rc1 with "cdn" and "local" in the hope that the widgetset of the AceEditor is loaded from the web or compiled locally. But it seems that the vaadin-maven-plugin does not compile the widgetset for add-ons in scope test. I have to change the scope so that the AceEditor gets compiled.
I admit that I don't know much about the vaadin-maven-plugin and how it works or how it must be configured. Do you have a tip for me?
The text was updated successfully, but these errors were encountered:
That is bit complicated, but certainly possible. The problem is that vaadin-maven-plugin (~ gwt-maven-plugin), is not very flexible on what it wants to include for the GWT compilation classpath. The workaround is to use plain exec plugin to do the test widgetset compilation. Also you'll need to update the test widgetset manually, but that is pretty easy task (just dig the right gwt module form the add-on jar file you are using).
Let's leave this issue open, if there are many who have the same requirement, let's make this kind of thing the default. Comment here if you also need/want to use add-ons in test UI.
Great work, Matti! I already converted one of my Highcharts add-on (multi-module project) to your template.
The add-on is a JS component wrapper. Thus, no GWT is involved here. However, for the demo UI I always used the AceEditor for manipulating the JS code describing the chart. I wonder if it's possible to use such GWT add-ons inside a demo UI in combination with your template? Maybe with Vaadin 7.7?
I made several experiments with archetype-vaadin-gwt-addon trying to copy all the GWT relevant stuff to my project, but it did not work. I also tried to use Vaadin 7.7.0.rc1 with "cdn" and "local" in the hope that the widgetset of the AceEditor is loaded from the web or compiled locally. But it seems that the vaadin-maven-plugin does not compile the widgetset for add-ons in scope test. I have to change the scope so that the AceEditor gets compiled.
I admit that I don't know much about the vaadin-maven-plugin and how it works or how it must be configured. Do you have a tip for me?
The text was updated successfully, but these errors were encountered: