[Lift] Re: lift:Menu.group

2009-03-26 Thread bradford
Derek, that'll work :) Thanks, Bradford On Mar 25, 6:13 pm, Derek Chen-Becker dchenbec...@gmail.com wrote: That seems reasonable to me. That's actually what the Menu.builder does, essentially. I don't think we want to modify the default behavior, but I could make it a donthide attribute

[Lift] Re: AJAX and IE6. No love.

2009-03-26 Thread Daniel Mueller
Glad I could help a bit. Whether it's the source of your problem is difficult to say, since I don't know the environment your app is running in, but it's such a nasty bug it's probably just good to know that it exists and to watch out for it (especially because it depends on a couple of factors

[Lift] Re: Dynamic Image generation / HttpServletResponse

2009-03-26 Thread Viktor Klang
For Graphs I'd recommend Flot :) On Thu, Mar 26, 2009 at 12:14 AM, David Pollak feeder.of.the.be...@gmail.com wrote: Here's some code to serve an image out of the database. Here's the Mapper definition: class Image extends LongKeyedMapper[Image] with IdPK { def getSingleton = Image

[Lift] How to customize the date format using generic toForm

2009-03-26 Thread maku
Hi, I'm new in lift and I'm playing around with an extended demo application I defined a date field (MappedDateTime) for a Mapper class which should be presented as date only. I would like to customize the date format when I generate a form with the toForm method of the Mapper class. The

[Lift] Form action URI's

2009-03-26 Thread Tim Perrett
Guys, I have a catalogue of products that essentially have a bunch of meta- data attached to them and the user can dynamically drill down into to get a relevant list of products. Because of this query type operation, im using the query string like so: /catalogue?filter=marin I know some people

[Lift] Re: Form action URI's

2009-03-26 Thread Derek Chen-Becker
Are you saying that when you access a page using some GET params, the page renders with those params missing in any embedded links? Some more concrete code/HTML could help clear this up, since I think I'm missing something. There is Helpers.appendParams, but I'm not sure if that's what you're

[Lift] Re: Form action URI's

2009-03-26 Thread Timothy Perrett
Sorry, let me be more accurate. Lets say your viewing the following: /catalogue?filter=marinlimit=10page=1 I then want a dropdown menu to change ³10² in limit to, say, 20. So I setup a form, but when it does the POST of course those paramaters are gone and the URL goes to: /catalogue Which

[Lift] Re: JPA Archetype error

2009-03-26 Thread edgarchan
hi i got the same problem, what i found is that web module is missing the templates-hidden dir and the default template. I generate my project with mvn archetype:generate -DarchetypeRepository=http://scala-tools.org/ repo-snapshots -DarchetypeGroupId=net.liftweb -

[Lift] Re: Form action URI's

2009-03-26 Thread marius d.
You could use some hidden form fields and have another rewriter in front of you existent one. This will read the hidden params and reconstruct the query string. But it looks to me that changing the action via JS would be easier. Br's, Marius On Mar 26, 9:51 pm, Timothy Perrett

[Lift] Re: Build Comet applications using Scala, Lift, and jQuery

2009-03-26 Thread etorreborre
Anyone can comment the ServerSide article: http://www.theserverside.com/news/thread.tss?thread_id=54079? There are questions on accessibility and a template engine. Eric. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google

[Lift] Re: lift:Menu.group

2009-03-26 Thread Derek Chen-Becker
It's in trunk now. Add the donthide attribute to your Menu.item tags and you'll get the same text as you would normally, just not in link form. Derek On Wed, Mar 25, 2009 at 4:31 PM, bradford fingerm...@gmail.com wrote: Derek, that'll work :) Thanks, Bradford On Mar 25, 6:13 pm, Derek