[Lift] Re: Using ExtJS with Lift?

2009-08-07 Thread marius d.
Keep in mind that for YUI to work with lift you also need to include liftYUI.js Br's, Marius On Aug 7, 10:16 pm, Stefan Scott wrote: > Hi Dirk - > > Nice to meet you. I'm still rather new to lift myself, and completely > new to ExtJS. I'm studying this stuff in my spare time, and I haven't > ha

[Lift] Re: Using ExtJS with Lift?

2009-08-07 Thread Charles F. Munat
I'm using Ext Js 3.0 in a couple of Lift projects (just as soon as I finish this damn desktop app -- hopefully by Monday). Would be interested in anything you're doing re Ext Js. Chas. Stefan Scott wrote: > Hi Dirk - > > Nice to meet you. I'm still rather new to lift myself, and completely >

[Lift] Re: Using ExtJS with Lift?

2009-08-07 Thread Stefan Scott
Hi Dirk - Nice to meet you. I'm still rather new to lift myself, and completely new to ExtJS. I'm studying this stuff in my spare time, and I haven't had a chance to roll up my sleeves and do any work yet on implementing lift's JsArtifacts trait for the ExtJS JavaScript library. Of course, if and

[Lift] Re: Using ExtJS with Lift?

2009-08-07 Thread Dirk Louwers
Hi, I am new to this group and have used ExtJS for some projects and have recently stumbled across Scala and Lift and am very impressed with both. Stefan, I would greatly appreciate it if you could supply your JsArtifacts trait implementation for ExtJS. Another option that I'm trying now is to u

[Lift] Re: Using ExtJS with Lift?

2009-08-05 Thread Stefan Scott
Thanks Derek! On Aug 5, 7:26 am, Derek Chen-Becker wrote: > OK, so on re-read I totally misunderstood the question :P. If you write your > own maven project you could put the scripts under > src/main/resources/toserve/extjs (per your Boot example setting up > ResourceServer). No need to hack on

[Lift] Re: Using ExtJS with Lift?

2009-08-05 Thread Derek Chen-Becker
OK, so on re-read I totally misunderstood the question :P. If you write your own maven project you could put the scripts under src/main/resources/toserve/extjs (per your Boot example setting up ResourceServer). No need to hack on the lift module itself. Derek On Wed, Aug 5, 2009 at 4:23 AM, Derek

[Lift] Re: Using ExtJS with Lift?

2009-08-05 Thread Derek Chen-Becker
Your guess is correct. The jquery-ui-min.js contains the datePicker. We used to use datePicker.js but then we switched to the datePicker that's in jquery UI. As for your question about where to put the scripts, you don't want to put them in src/main/resources/toserve unless you're writing a widget

[Lift] Re: Using ExtJS with Lift?

2009-08-04 Thread Stefan Scott
Thanks for this info, Marius. To get started with Lift I'm reading through the excellent book "Exploring Lift" you wrote with Eric and Tyler (version 27 July 2009), plus the source for the PocketChange app and liftweb, downloaded from GitHub. As I'm still finding my way through the various packa

[Lift] Re: Using ExtJS with Lift?

2009-08-04 Thread Stefan Scott
Thanks, your instructions sound very straightforward. On Aug 4, 11:00 am, "marius d." wrote: > To make lift work with ExtJS you need to implement > net.liftweb.http.js.JsArtifacts trait and provide your implementation > in boot such as: > > LiftRules.jsArtifacts = YourImplementationOfJsArtifacts

[Lift] Re: Using ExtJS with Lift?

2009-08-04 Thread Timothy Perrett
Stefan, Chas is doing work with ExtJS, but right now I think because of the GPL licensing we cant "integrate" it with lift because of some legal stuff. You might be interested to know that there is a current effort to integrate with http://cappuccino.org/ which might be of interest (led my myse

[Lift] Re: Using ExtJS with Lift?

2009-08-04 Thread marius d.
To make lift work with ExtJS you need to implement net.liftweb.http.js.JsArtifacts trait and provide your implementation in boot such as: LiftRules.jsArtifacts = YourImplementationOfJsArtifacts of course on top of this you would likely need to have specific .js files. take a look on the current