Skip to main content

jquery validation engine : ajax field validation with java (not with php)



I try to validate a field with ajax and a function which verify that the value is not already in base.





All examples I found are with php ; how to do with java ?





JSP code :







<form id="FLoginNew" action="Loginnew" method="post">

.....

<script>

$(document).ready(function(e) {

$("#FLoginNew").validationEngine('attach', {promptPosition : "centerRight", scroll: false, validationEventTrigger: "blur", autoHidePrompt:true, autoHideDelay:3000 });

});

</script>







jquery.ValidationEngine-fr.js altered :







"ajaxLoginCall": {

"url": "myapp.selvlets.DoublonLoginServlet",

"extraDataDynamic": ['#login'],

"alertText": "* Ce login est déjà pris",

"alertTextOk": "* Ce login est disponible",

"alertTextLoad": "* Chargement, veuillez attendre"

},







As URL, I tried : "url": "/DoublonLogin", which is the declaration of the servlet mapping in web.xml.





I don't know what to put as url...





Thank you !


Comments

  1. I'm answering myself : I found the solution :

    At first, the input class (I didn't display) : class="validate[required,ajax[Ajaxdoublonlogin]]"

    Then, the url of the Ajax call called "Ajaxdoublonlogin" : "Doublonlogin" as it is declared in the web.xml file. It's a servlet.

    The servlet :


    It must import a JSON librairy. I chose "JSONSimple" : simple and
    enough for what I want to do.
    Create a JSON array and put then name of the input field then true or false
    after verification is made.
    Create a writer in the response object and write the JSON array.


    Nothing difficult ! ^_^

    Example : "login" is the id of the input field

    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

    String login = new String(request.getParameter("login")); // we catch the value

    JSONArray jsres = new JSONArray(); // new JSON array

    jsres.add("login"); // 1st field : the field name = "login"

    if(<login in the database ?>) jsres.add(new Boolean(false)); // In database ? => false in the JSON array
    else jsres.add(new Boolean(true)); // Not in database > true in the JSON array !!

    response.setContentType("application/json"); // The answer is in JSON content type
    response.setCharacterEncoding("UTF-8"); // Put the right encoding
    PrintWriter writer = response.getWriter(); // new answer writer

    try {
    writer.println(jsres); // WRITE !! ^_^
    log.info("Retour JSON : " + jsres);
    } catch(Exception e){
    log.error("Erreur lors du transfert JSON : " + e.getMessage());
    } finally {
    writer.close(); // Don't forget to close the writer
    }
    }


    It works fine...
    If you have suggestions, I'll take with pleasure !

    Now, I'll try to prevent the form submit because if the last condition is this condition, the submit appends ; I don't know why...

    ReplyDelete

Post a Comment

Popular posts from this blog

Why is this Javascript much *slower* than its jQuery equivalent?

I have a HTML list of about 500 items and a "filter" box above it. I started by using jQuery to filter the list when I typed a letter (timing code added later): $('#filter').keyup( function() { var jqStart = (new Date).getTime(); var search = $(this).val().toLowerCase(); var $list = $('ul.ablist > li'); $list.each( function() { if ( $(this).text().toLowerCase().indexOf(search) === -1 ) $(this).hide(); else $(this).show(); } ); console.log('Time: ' + ((new Date).getTime() - jqStart)); } ); However, there was a couple of seconds delay after typing each letter (particularly the first letter). So I thought it may be slightly quicker if I used plain Javascript (I read recently that jQuery's each function is particularly slow). Here's my JS equivalent: document.getElementById('filter').addEventListener( 'keyup', function () { var jsStart = (new Date).getTime()...

Is it possible to have IF statement in an Echo statement in PHP

Thanks in advance. I did look at the other questions/answers that were similar and didn't find exactly what I was looking for. I'm trying to do this, am I on the right path? echo " <div id='tabs-".$match."'> <textarea id='".$match."' name='".$match."'>". if ($COLUMN_NAME === $match) { echo $FIELD_WITH_COLUMN_NAME; } else { } ."</textarea> <script type='text/javascript'> CKEDITOR.replace( '".$match."' ); </script> </div>"; I am getting the following error message in the browser: Parse error: syntax error, unexpected T_IF Please let me know if this is the right way to go about nesting an IF statement inside an echo. Thank you.