I need to display a table for the autocomplete (like the multicombobox).
I have already done this on a previous version of telerik with the code:
.HeaderTemplate("<div class=\"k-grid-header\" style=\"padding-right: 17px;\">" +
"<div class=\"k-grid-header-wrap\">" +
"<table>" +
"<colgroup>" +
"<col>" +
"<col>" +
"<col>" +
"<col>" +
"</colgroup>" +
"<tbody>" +
"<tr>" +
"<th class=\"k-header\">P1</th>" +
"<th class=\"k-header\">P2</th>" +
"<th class=\"k-header\">P3</th>" +
"<th class=\"k-header\">P4</th>" +
"</tr>" +
"</tbody>" +
"</table>" +
"</div>" +
"</div>")
.Template("<span class=\"k-cell\">#: data.P1#</span>" +
"<span class=\"k-cell\">#: data.P2#</span>" +
"<span class=\"k-cell\">#: data.P3#</span>" +
"<span class=\"k-cell\">#: data.P4#</span>")