Click here to Skip to main content
15,887,676 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
JavaScript
<script type="text/javascript">
    $(document).ready(function () {
        var qry = "Db.svc/CustTypes?select=CustTypeTitle&$format=json";
        $('#Makes').autocomplete({
            source: qry
        });
    });
</script>


1. I'm unable to extract single column from odata service. above code still shows all the columns in CustType table.

2. How to bind it to autocomplete jquery UI to show only related records.
Posted

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900