Click here to Skip to main content
15,887,135 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,Good evening to all.



I want to add one auto complete text to my kendo grid,here i'm giving my code


C#
$('#divgrid').kendoGrid({
              columns: [
                  { field: "Id", title: "Id", type: "number", width: 25, },
                  { field: "Name", title: "Name", type: "string", width: 25, },
                  { field: "Age", title: "Age", type: "number", width: 25 }

              ],
              dataSource: {
                  data: [
                      { Id: "3", Name: "XYZ", Age: "25" },
                      { Id: "4", Name: "MNQ", Age: "26" },
                      { Id: "33", Name: "ABC", Age: "27" },
                      { Id: "6", Name: "TES", Age: "28" },
                      { Id: "2", Name: "SET", Age: "29" },
                      { Id: "66", Name: "Test", Age: "44" },
                      { Id: "99", Name: "You", Age: "3" },
                      { Id: "1", Name: "Zxy", Age: "101" }

                  ],

                 
              },
              sortable: {
                  mode: "single",
                  allowUnsort: false
              },
              pageable: {
                  pageSize: 3,
                  refresh: true,
                  numeric: true,
                  input: true,
                  buttonCount: 2
              },
             
              height: 200,
              selectable: "multiple cell",
            
              scrollable: false,
              navigatable: true,
              groupable: true,
              columnMenu: true,

          });

});

Thanks in advanced.
Posted

1 solution

Read this thread[^] on telerik forum.
The implementation is identical to the one shown here[^].

-KR
 
Share this answer
 
Comments
RamAchanta 25-Sep-15 9:46am    
Thank you so much it's working.

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