Search:

Type: Posts; User: slimchrisp; Keyword(s):

Search: Search took 0.08 seconds.

  1. is that a different repository than the spring...

    is that a different repository than the spring project itself?
    is it in springramework.cvs.sourceforge.net?
  2. this tutorial looks like sort of what i want to...

    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...
  3. is it possible to do something similar, but...

    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?...
  4. thanks again sergio. i couldn't have done it...

    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?
  5. interesting. it seems this works with returning a...

    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....
  6. I have created jira issue...

    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...
  7. just a note, i think my validation problem may...

    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?
  8. Yeah, it definitely works without it. It worked...

    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">
    ...
  9. ajax submit, forward if successful, show errors on fail

    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...
  10. thanks sergio. i've taken a look at the source,...

    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...
  11. ajax handlers (specifically DefaultValidationHandler)

    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....
  12. submit form via ajax, only forward on success

    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...
  13. i got it. it was a scriptaculous thing. had to do...

    i got it. it was a scriptaculous thing. had to do this:

    new Ajax.Updater('testLogin', '<c:url value='/auth/login'/>', {method: 'get'});
  14. oh yeah, i'm using scriptaculous for my ajax...

    oh yeah, i'm using scriptaculous for my ajax call:

    new Ajax.Updater('testLogin', '<c:url value='/auth/login'/>');
  15. ajax form validation problem (validates on form view)

    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...
  16. I'd recommend getting Expert Spring MVC and Web...

    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...
  17. Hmmm. Actually mdeinum, yeah, it will. Here's my...

    Hmmm. Actually mdeinum, yeah, it will. Here's my setup in applicationContext.xml:



    <bean id="localeResolver" class="org.springframework.web.servlet.i18n.CookieLocaleResolver">
    <property...
  18. i think it looks for just the base name first. if...

    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...
  19. Replies
    2
    Views
    830

    I'm on tomcat. FYI, I did make some headway....

    I'm on tomcat. FYI, I did make some headway. Here's my web.xml:


    <!-- USER -->
    <servlet>
    <servlet-name>user</servlet-name>
    ...
  20. Replies
    2
    Views
    830

    del.icio.us/myspace/etc style urls

    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....
Results 1 to 20 of 21