is that a different repository than the spring project itself?
is it in springramework.cvs.sourceforge.net?
Type: Posts; User: slimchrisp; Keyword(s):
is that a different repository than the spring project itself?
is it in springramework.cvs.sourceforge.net?
this tutorial looks like sort of what i want to do, but there are some questions.
first, can i have multiple handlers for one controller? i also need to validate my form submission before...
is it possible to do something similar, but instead of refreshing the page, just refresh a div (with the same call)? or do i have to post the form, then do an Ajax.Updater when my ajax post returns?...
thanks again sergio. i couldn't have done it without your help.
as far as the tarconite bug goes, i guess that fix will make it into a future release?
interesting. it seems this works with returning a model and view this way:
ModelAndView modelAndView = new ModelAndView("ajax-redirect:/viewName");
but not using a redirectview....
I have created jira issue http://opensource.atlassian.com/projects/spring/browse/MOD-256
Sweet. Works perfectly.
I'm sorry, but I'm still not exactly sure how to configure this. Is...
just a note, i think my validation problem may deal with submitting passwords via ajax. is there something special you need to do for passwords?
Yeah, it definitely works without it. It worked until I tried to do this via ajax. I'm using valang.
<bean id="loginValidator" class="org.springmodules.validation.valang.ValangValidator">
...
sorry that this post is somewhat of a duplicate, but i feel like what i am doing is fairly simple, but it's turning into a battle for me. anyway, here's a fairly detailed description of what i'm...
thanks sergio. i've taken a look at the source, but i'll check out that tutorial as well.
i'll post on the modules forums as well, but i thought this might be the right place to ask another...
Has anyone used the org.springmodules.xt.ajax.validation.DefaultValidationHandler? I'm really battling through what should be something really easy. I'm thinking it's been done before, but who knows....
ok, so this is what i'm trying to do. at the top of my page i have a login link. when a user clicks 'login', a login form fades in. the form is put inside a div via an ajax call. instead of...
i got it. it was a scriptaculous thing. had to do this:
new Ajax.Updater('testLogin', '<c:url value='/auth/login'/>', {method: 'get'});
oh yeah, i'm using scriptaculous for my ajax call:
new Ajax.Updater('testLogin', '<c:url value='/auth/login'/>');
I'm doing some simple ajax functionality that's giving me some problems with form validation. So here's what the functionality looks like.
I have a login button at the top of my page. When the...
I'd recommend getting Expert Spring MVC and Web Flow. I've been using spring dependency injection and transaction management for a few years, but I only recently started using Spring MVC. The book...
Hmmm. Actually mdeinum, yeah, it will. Here's my setup in applicationContext.xml:
<bean id="localeResolver" class="org.springframework.web.servlet.i18n.CookieLocaleResolver">
<property...
i think it looks for just the base name first. if you have this mapping:
<bean id="messageSource" class="org.springframework.context.support.ResourceBundleMessageSource">
<property...
I'm on tomcat. FYI, I did make some headway. Here's my web.xml:
<!-- USER -->
<servlet>
<servlet-name>user</servlet-name>
...
Ok, here's what I want to do. I'm trying to build an app, where the url will look like this: www.domainname.com/username. So when I go to www.domainname.com/username1, I get a profile for username1....