Too bad, the Spring Modules project has been closed years ago, so related modules will not be maintained anymore: obviously, you could fork and make it open source on Google Code or something like...
Type: Posts; User: sbtourist; Keyword(s):
Too bad, the Spring Modules project has been closed years ago, so related modules will not be maintained anymore: obviously, you could fork and make it open source on Google Code or something like...
Hi guys,
I have a Controller object with a @RequestMapping(value="...", method=GET)-annotated method where I would like to return a custom object, rather than a model or a view.
I tried to...
Hi guys,
the Spring JCR Extension 0.9 has been recently released.
Here is a short list of resolved issues:
** Bug
* [SEJCR-1] - JCR Factory register the listeners before registering the...
Yes, it's based on the spring-modules 0.9 source code, and contains several additional fixes, just take a look at this blog post:
...
Hi guys,
thanks for your interest to the project.
The migration from the old springmodules-jcr to the new se-jcr extension is going to happen during this week.
The se-jcr development status...
Hi Russ,
what's the connection between Spring Extensions and Spring Modules?
The two projects seem to overlap: will Spring Modules be abandoned in favor of Spring Extensions? Will modules be...
There's no roadmap, currently, nor any plan to put it outside of the sandbox.
If there's enough interest, I'd like to review the current implementation, make it compatible with the latest Prevayler...
Hi,
the project is currently stalled due to lack of feedback and interest.
I'm still here :) but I'd like to know if there's someone actually using it: do you have any feedback about it?
...
Try setting the "disabled" attribute only when you actually want to disable it; that is:
If(some condition){
SetAttributeAction action3 = new SetAttributeAction("buttonId","disabled","true");...
Keith,
do you get any Javascript message when the Ajax request fails?
Moreover, may you post here the HTML generated by the Ajax response that renders the 20 items?
Thanks,
Cheers,
Sergio...
Keith,
it seems that you're missing to set the input field id on the replaced one.
Try the following:
AjaxResponse response = new AjaxResponseImpl();
String city = zipCode.getCity(); ...
The XT.doAjaxAction() method should work even in pages without a Spring MVC controller: there's a sample showing exactly the same scenario, too (see XT samples web application).
There's nothing...
Thank you very much for taking the time to write this down and share your knowledge with the community.
Cheers,
Sergio B.
XT Ajax will support multiple forms starting from the upcoming 0.9 release, see http://jira.springframework.org/browse/MOD-213
Cheers,
Sergio B.
Well, if they're interesting for the whole community, please open a Jira issue about them.
Cheers,
Sergio B.
Very good, but ...
I thought you were using the latest XT snapshot: it already contains a new AjaxResponseImpl version with a constructor letting you set the encoding.
By using this, there...
How did you set the character encoding?
I think that if you open a new thread with a proper subject there will be more chances to get an answer ;)
Cheers,
Sergio B.
Too bad I don't know of any library capable of automatically doing what you want. You can give a look at [url]http://commons.apache.org/lang/api/org/apache/commons/lang/StringEscapeUtils.html ......
Please open a Jira issue about that.
I'll give it a more detailed look ASAP.
Cheers,
Sergio B.
Now I understand everything, but I think there's no other solution than the ones previously mentioned: sending the parameter through XT would not solve your problem (AFAIU).
However, let us know...
Please forgive me if I'm saying something obvious (I've never used SWF), but if you say that you cannot send an "_eventId" parameter through an hidden field, wouldn't it be the same if you sent the...
My suggestion could seem a bit obvious, but why don't you put an hidden field named, say, "_customEventId", giving it the actual value of your "_eventId"?
Doing so, "_customEventId" should be...
Ok, now I understand.
And what about hidden input fields?
Server parameters should be the best solution: you can access those parameters through the AjaxEvent#getParameters() method.
May you explain in a more detailed way why it doesn't work for your use...