[Lift] Re: Ajax in ToDo application hanging

2009-09-01 Thread Dorinel
Pollak feeder.of.the.be...@gmail.com wrote: On Thu, Aug 27, 2009 at 6:24 PM, Dorinel dorinel.munte...@gmail.com wrote: Is there a way to update ToDo application to use 1.1-SNAPSHOT? Edit your pom.xml file. Change the Scala version to 2.7.5. Change the net.liftweb dependencies to 1.1-SNAPSHOT

[Lift] Re: Ajax in ToDo application hanging

2009-09-01 Thread Dorinel
in makeUtf8 to HTTPRequest instead of HttpServletRequest so that the signature looks thus: private def makeUtf8(req: HTTPRequest) {...} Cheers, Indrajit On Sep 1, 1:19 pm, Dorinel dorinel.munte...@gmail.com wrote: After updating I have this error: = [INFO] use

[Lift] Re: Ajax in ToDo application hanging

2009-08-27 Thread Dorinel
Is there a way to update ToDo application to use 1.1-SNAPSHOT? On Aug 28, 1:38 am, David Pollak feeder.of.the.be...@gmail.com wrote: On Thu, Aug 27, 2009 at 3:19 PM, Dorinel dorinel.munte...@gmail.com wrote: It's great! By the way, by default ToDo application runs on 1.1-SNAPSHOT? I

[Lift] JetBrains IntelliJ IDEA integration

2009-08-26 Thread Dorinel
I've managed to create simple scala projects in Intellij IDEA, but when I try to import an existing lift pom.xml file I fail. It seems that all the libraries from pom.xml are not added to the project and all the lift classes used in project are marked as syntax errors. Have anybody managed to add

[Lift] Re: JetBrains IntelliJ IDEA integration

2009-08-26 Thread Dorinel
- New Project etc.). All libraries should be fetched form the repository automatically. What build of IDEA do you use? Cheers, Ilya 2009/8/26 Dorinel dorinel.munte...@gmail.com I've managed to create simple scala projects in Intellij IDEA, but when I try to import an existing lift pom.xml

[Lift] Re: JetBrains IntelliJ IDEA integration

2009-08-26 Thread Dorinel
as a project file (File - New Project etc.). All libraries should be fetched form the repository automatically. What build of IDEA do you use? Cheers, Ilya 2009/8/26 Dorinel dorinel.munte...@gmail.com I've managed to create simple scala projects in Intellij IDEA, but when I try to import

[Lift] Best WYSIWYG editor for Lift application

2009-08-26 Thread Dorinel
What is the best (and simplest) WYSIWYG editor for Lift application? For now I just need to be able to add images to textarea, so that a user will see it's text relative to images before submitting it. It seems than TinyMCE is suitable for this, but I don't know, may be there is a better

[Lift] Bug in Darwin

2009-07-23 Thread Dorinel
I'm trying now to run Darwin and I have a problem with second form, it doesn't compile: http://wiki.liftweb.net/index.php/Hello_Darwin#add_form import scala.xml.NodeSeq import net.liftweb.http.S._ import net.liftweb.http.SHtml._ import net.liftweb.util.Helpers._ class HelloForm2 { var who =

[Lift] Re: Bug in Darwin

2009-07-23 Thread Dorinel
I've been able to compile this example by changing: submit - submit(?(Send), ignore = {println(value: + who + :: + param(whoField))}), to submit - submit(?(Send), () = {println(value: + who + :: + param(whoField))}), --~--~-~--~~~---~--~~ You received

[Lift] Re: Bug in Darwin

2009-07-23 Thread Dorinel
But I've stubled upon another bug when tried to implement the form with Ajax: import scala.xml.NodeSeq import net.liftweb.http.S._ import net.liftweb.http.SHtml._ import net.liftweb.util.Helpers._ import net.liftweb.http.js.{JsCmd, JsCmds} class HelloFormAjax { def whoNode(str: String) =

[Lift] Re: Bug in Darwin

2009-07-23 Thread Dorinel
problem(liftweb 1.0, jquery1.3.2 build in)? On Jul 23, 9:22 pm, Dorinel dorinel.munte...@gmail.com wrote: But I've stubled upon another bug when tried to implement the form with Ajax: import scala.xml.NodeSeq import net.liftweb.http.S._ import net.liftweb.http.SHtml._ import

[Lift] Re: How to use SHtml.ajaxCall?

2009-07-23 Thread Dorinel
marius d. wrote: Try: button type=button onclick={ajaxCall(JsRaw($('#whoField').attr ('value')), updateWho _)._2}{?(send)}/button This still is not working for me, it's what I get: use java command with args in file forced : false

[Lift] Re: Stand alone download

2008-10-18 Thread Dorinel
Its never really an issue for us as were all connected to the net. Can I ask why you cant connect that machine to the net? A fair number of secure organizations (corporate, government, etc.) may opt to not have direct Internet connections.  It's not that uncommon. Yes, it's true.  

[Lift] Stand alone download

2008-10-17 Thread Dorinel
Is there a stand alone download? I have a computer which can't be linked to Internet, I can only copy things through usb stick. So how can I copy lift to that computer? (Can I configure an working dir on another computer and copy it?) --~--~-~--~~~---~--~~ You