Re: Has anyone gotten the tapestry 5 highcharts demo webapp to run?

2013-03-09 Thread François Facon
Hi, I only use run jetty run with a none maven based project. Most of the time, we use the maven plugin for eclipse to create a new maven build in Eclipse Run Configuration as follow. -select imported project - right click - run as - run configurations - create a new configuration under maven

Re: Has anyone gotten the tapestry 5 highcharts demo webapp to run?

2013-03-09 Thread Shing Hing Man
I had the same problem a few weeks ago. I was using the following Jetty Eclipse plugin. http://wiki.eclipse.org/Jetty_WTP_Plugin In the console, I got the following message : Excluded entry=/home/matmsh/Downloads/tapestry/highChart/tapestry5-highcharts/target/test-classes To fix

Triggering a form submission via JavaScript in 5.4-alpha2

2013-03-09 Thread Bob Harner
Has anyone figured out how to trigger a form submission using JavaScript in Tapestry 5.4? In 5.3 I was able to do this: this.form.fire(Tapestry.FORM_PROCESS_SUBMIT_EVENT) but that does nothing under 5.4. - To unsubscribe,

Re: Triggering a form submission via JavaScript in 5.4-alpha2

2013-03-09 Thread Lance Java
You could render a hidden submit button and fire the click() event on it -- View this message in context: http://tapestry.1045711.n5.nabble.com/Triggering-a-form-submission-via-JavaScript-in-5-4-alpha2-tp5720381p5720383.html Sent from the Tapestry - User mailing list archive at Nabble.com.

Re: Triggering a form submission via JavaScript in 5.4-alpha2

2013-03-09 Thread Steve Eynon
Try this: this.form.fire(submit) I've not tried it, but I was looking at: http://people.apache.org/~hlship/t5api/coffeescript/forms.html Steve. --- If at first you don't succeed, so much for skydiving!

Page components are not loaded in JBoss

2013-03-09 Thread rakcheru
Tapestry version : 5.3.6 Jboss : 7.1.1 Greetings, I had been struggling for most of the day trying to make tapestry run on jboss 7.1.1 Issue: The page components are not at all working. Even the default page components are not loaded The same app is working fine in jetty Things i

Re: Has anyone gotten the tapestry 5 highcharts demo webapp to run?

2013-03-09 Thread George Ludwig
@Francois: Thanks for reminding me to run it from the command line with maven...that works fine. @Shing: I got the same excluded entry, but in my run configuration, it showed it as being included. I set/unset the path, restarted Eclipse, and now it runs as expected. This is just weird, and I

Re: Has anyone gotten the tapestry 5 highcharts demo webapp to run?

2013-03-09 Thread George Ludwig
Just a quick note...the difference may have been how I imported the project. Yesterday, I got caught up in importing it in to Eclipse using EGit's import function. Today, just before everything worked, I used Eclipse's native import, and imported EGit's working directory for the project. If

Re: How to get a lot of data in to highcharts?

2013-03-09 Thread Jay Ginete
On 3/10/2013 5:40 AM, George Ludwig wrote: I've been reviewing the tapestry5/highcharts integration code, and I see that the data for the charts has been hardcoded in to a javascript file. What is the best way to display a lot of data from the server? For example, I have a series with hundreds

Re: First stab at CDI module for tapestry

2013-03-09 Thread Kalle Korhonen
Hey Magnus, as part of your tapestry-cdi work, did you look into implementing a Tapestry CDI SPI, i.e. an implementation of javax.enterprise.inject.spi.BeanManager? This is related to my earlier thread about injectable entitylisteners (

Re: First stab at CDI module for tapestry

2013-03-09 Thread François Facon
+1 Did you have a look at https://github.com/got5/cdi-tapestry-contribution? François 2013/3/9 Kalle Korhonen kalle.o.korho...@gmail.com: Hey Magnus, as part of your tapestry-cdi work, did you look into implementing a Tapestry CDI SPI, i.e. an implementation of

Re: First stab at CDI module for tapestry

2013-03-09 Thread Lenny Primak
I would love to contribute the FlowLogix module, or as much of it as it still applies to tapestry 5.4 into the core. It includes CDI support plus the JEE stack support. The CDI interface doesn't use SPI yet. On Mar 9, 2013, at 5:34 PM, Kalle Korhonen kalle.o.korho...@gmail.com wrote: Hey

Re: How to get a lot of data in to highcharts?

2013-03-09 Thread Shing Hing Man
I have an example that builds the entire  JSONObject in Java. http://lombok.demon.co.uk/tapestry5Demo/test/highcharts/hcdemotwosource Th following specifies  part of the chart in Javascript and part of the charts in Java. http://lombok.demon.co.uk/tapestry5Demo/test/highcharts/hcdemothree

Re: How to get a lot of data in to highcharts?

2013-03-09 Thread George Ludwig
@Shing: Thanks that's super helpful!! On Sat, Mar 9, 2013 at 3:10 PM, Shing Hing Man mat...@yahoo.com wrote: I have an example that builds the entire JSONObject in Java. http://lombok.demon.co.uk/tapestry5Demo/test/highcharts/hcdemotwosource Th following specifies part of the chart in

Re: First stab at CDI module for tapestry

2013-03-09 Thread Kalle Korhonen
Both of these seem to be about referencing and using CDI managed beans in Tapestry services, please correct me if I'm wrong. What I'm asking is the reverse - using Tapestry services in applications frameworks expecting a CDI environment. Kalle On Sat, Mar 9, 2013 at 3:41 PM, Lenny Primak