Datatable Multicombo fitmaster: false

Hi,

using a datatable and a filter:

header: ["Projekt", {
                        content: "multiComboFilter",
                        inputConfig: {
                            tagMode: true,
                            suggest: {
                                fitMaster: false,
                                suggestWidth: 250
                            }
                        }
                    }],

The multicombo does not take the width, but keeps having the width of the column. With a multiSelectFilter instead it works…

Thanks,
Martin

In such case, inputConfig gives access directly to the suggest. Also, there’s no suggestWidth property. The proper implementation is:

inputConfig: {
    tagMode: true,                            
    fitMaster: false,
    width: 250                            
}