up vote 0 down vote favorite
share [g+] share [fb]

has anyone tried using jquery autocomplete plugin with DWR as data source.

i need autocompletion functionality for my page, but i am also using dwr instead of typical ajax call.

i found one link regarding this, but i am unable to locate the source code for this!

http://www.nabble.com/-autocomplete--jquery-%2B-dwr-td22691104s27240.html

can somebody please help me locating this source and using it?

regards

link|improve this question
at least could somebody point me to the jquery ui version of autocomplete plugin. – sangram Oct 5 '09 at 12:15
feedback

3 Answers

It is pretty simple to use the jQuery UI autocomplete plugin (http://jqueryui.com/demos/autocomplete/) with dwr.

Example:

jQuery( function() {  
    Cities.getAllCities(function(data) {
         var input = jQuery("#cities");
         input.autocomplete({
             minLength: 1,
             source: data
         });
    }
});
link|improve this answer
feedback

I don't really understand what Øyvind Marthinsen wrote, but I think that something like this:

jQuery(inputSelector).autocomplete({

.....................

    source : function(request, response) {
        TheClass.theMethod(request.term,{
            callback: function(TheDataFromServer) {
                var arrayOfData = [];
                for(i = 0;i < TheDataFromServer.length;i++){
                    arrayOfData.push(TheDataFromServer[i].someStringIfDataNotString);
                }
                response(arrayOfData);
            }
        });
    }

.....................

});

should work.

link|improve this answer
feedback
Its pretty simple, use DWR's ajax calling-technique and use jQuery's autocomplete method inside the callback option. Please refer the below example. Script imports, CSS imports should be in this order

<LINK href='<%=contextPath %>/styles/jquery.autocomplete.css' rel="stylesheet" type="text/css">
<LINK href='<%=contextPath %>/styles/main.css' rel="stylesheet" type="text/css">
<script type="text/javascript"src="<%=contextPath%>/scripts/jquery.min.js"></script>
<script type="text/javascript"src="<%=contextPath%>/scripts/jquery-ui-1.8.2.custom.min.js"></script>`enter code here`
<script type='text/javascript' src='<%=contextPath %>/scripts/jquery-latest.js'></script>
<script type='text/javascript' src='<%=contextPath %>/scripts/jquery.bgiframe.min.js'></script>
<script type='text/javascript' src='<%=contextPath %>/dwr/interface/TestService.js'></script>
<script type='text/javascript' src='<%=contextPath %>/scripts/jquery.autocomplete.js'></script>

TEXT BOX SHOULD BE LIKE BELOW

<input id="autoCompTxt" type="text">

JQUERY FUNCTION SHOULD BE WRITTEN THIS WAY

$(function() {
    $('#autoCompTxt').keyup(function() { 
        var val = $('#autoCompTxt').val() ;
        TestService.ajaxAutoCompleteTest(val, function(data){
        //alert (data);
            $(document).ready(function(){
                $('#autoCompTxt').autocomplete(data) ;
            });
        });
    });

});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown