This is a migrated thread and some comments may be shown as answers.

[Solved] Add autocomplete column to first level of a nested grid

1 Answer 106 Views
Grid
This is a migrated thread and some comments may be shown as answers.
Thomas
Top achievements
Rank 1
Thomas asked on 22 Jan 2015, 07:43 PM
Hi,

I am working on a nested grid and have a requirement to make the first column of the outer grid an "autocomplete" column.  Could you please point me to how I could accomplish this with the Kendo Grid?  Any and all help is appreciated.

Thanks,
Tom

1 Answer, 1 is accepted

Sort by
0
zzweber
Top achievements
Rank 1
answered on 22 Jan 2015, 09:20 PM
Ok I was able to solve this problem.  Here is the code I used:

columns: [         

{

field:

 

"ReportName",

title:

 

"Report Name",

width:

 

"200px",

width:

 

"150px",

filterable: {ui: reportNamesFilter}

},
=====================

function

 

 

reportNamesFilter(element) {

element.kendoAutoComplete({

filter:

 

"startswith",

dataSource: OuterReportData,

dataTextField:

 

"ReportName"

});

}

Tags
Grid
Asked by
Thomas
Top achievements
Rank 1
Answers by
zzweber
Top achievements
Rank 1
Share this question
or