Click here to Skip to main content
15,895,256 members
Please Sign up or sign in to vote.
1.00/5 (2 votes)
I try to use kend ui for combobox server filter like this
http://demos.kendoui.com/web/combobox/serverfiltering.html[^]

And this myown service online
http://46.38.160.17:180/EscoperService.svc/Admins[^]

C#
<script>
              $(document).ready(function() {
                  $("#products").kendoComboBox({
                      placeholder: "Select product",
                      dataTextField: "Name",
                      dataValueField:"AdminsID",
                      filter: "contains",
                      autoBind: false,
                      minLength: 3,
                      dataSource: {
                          type: "odata",
                          serverFiltering: true,
                          transport: {
                              read: {
                                  url: "http://46.38.160.17:180/EscoperService.svc/Admins",
                              }
                          }
                      }
                  });
              });
          </script>


but it doesn't work
Posted
Comments
ZurdoDev 4-Sep-13 10:17am    
Why doesn't it work?
[no name] 4-Sep-13 10:18am    
"it doesn't work", great description of a problem. Do you call your mechanic on the phone and tell him "car broke" and expect he can fix your car from that?

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