[Lift] Re: Specs not finding classes in tests from maven

2010-03-03 Thread sdillard
is well now, but I've switched to scalatest from specs -- seems to be cleaner and more like the rspec world I love in rails. Hope that helps someone On Mar 2, 2:47 pm, sdillard spencer.dill...@gmail.com wrote: I am thoroughly confused on this one, so any help is greatly appreciated.  I am using

[Lift] Specs not finding classes in tests from maven

2010-03-02 Thread sdillard
I am thoroughly confused on this one, so any help is greatly appreciated. I am using eclipse and my directory structure looks like this: src/main/scala - com.xxx.web.model Client.scala src/test/scala - com.xxx.web.model ClientSpecs.scala I can run the specs when I run the project as a JUnit

[Lift] Re: How to execute JsCmd after submit

2010-02-27 Thread sdillard
,       age - SHtml.text(ageVar.is.toString, v = ageVar(v.toInt)),       male - SHtml.text(maleVar.is.toString, v = maleVar(v.toBoolean)),       submit - SHtml.ajaxSubmit(Calculate, () = {        // return your JSCmd here      }),       le - le.toString     )) On 26 feb., 18:58, sdillard

[Lift] How to execute JsCmd after submit

2010-02-26 Thread sdillard
I am probably confused on what exactly is going on in the request / response cycle here, but I am trying to show a table cell after a calculation is performed, and I can't seem to get the js to run. The JS is being called in the showResults method that is bound to the submit action. I am