Hi, you can use fromEditor/toEditor functions if the displayed data is different from the data in your FilteringSelect.
{ field: "Album", name:"FilteringSelect", width: '100px', editable: true,
editor: FilteringSelect,
editorArgs: {
props: 'store: fsStore, searchAttr: "id"',
fromEditor: function(value, cell){
return ...//the value is from the FilteringSelect (after editing), do anything you want here, and what you return will be displayed in cell.
},
toEditor: function(data){
return ...//data is the grid data, do anything you want here, and what you return will be set to the FilteringSelect by set('value', ...) method.
}
}
},