GridSuggest Grid configuration

Hi,

I wonder if i can configure the gridsuggest so i can choose what to show in the header, and what value to display in the combo when an item is selected.
And I also get this error (but the script still runs anyway): webix_debug.js:17674 Uncaught TypeError: Cannot read property ‘scrollTo’ of undefined
I use serverside connection like i use in normal suggest view

You can define data from which column will be shown after row selection.

{ view:"richselect", options:{
    view:"gridsuggest",
    //you can define any custom logic here
    template:function(item){
        return item.name + " (" + item.color + ")";
    },
    //textColor:#name#
    data:options
}},

Not quite sure what do you mean by “in the header”

TypeError: Cannot read property ‘scrollTo’ of undefined

Can you share a snippet or a demo link ?