> Have you tried just changing the form attribute on the Lift tag to "GET"
> instead of "POST"?
Of course ;-) Lift encodes the URI which makes it all bone again.
> Anyways, you should be able to just do a mapping on S.request.params to
> "regenerate" the URL. Something like:
>
> S.request.map(r =>
> val m = r.params
> ... update the form values you want to change here ...
> m.keys.map(key => m(key).mkString(key + "=", "&" + key +
> "=")).mkString("?","&","")
>
> }
>
> Ugly, but it should work. There has to be a cleaner way but I don't have
> time to really dig into it at the moment.
This wil have the same issue I do belive - Im going to have a play
with using some kind of hidden form field when i get some time (2mro
with any luck!)
Cheers, Tim
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Lift" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/liftweb?hl=en
-~----------~----~----~----~------~----~------~--~---