Page 1 of 1

Resizable columns with dropdown

Posted: 14 Jan 2019, 22:07
by shmbar
Hi Guys

I'm facing an issue when my table has a resizable columns option and I also include a dropdown to one of the columns.
Unfortunately, the dropdown doesn't show the options. Searching the internet, I've found that this is a bug when I include both features together and no solution has been implemented.

Has anyone faced this bug? And if yes, how can I overcome it?

thanx

Re: Resizable columns with dropdown

Posted: 22 Jan 2019, 10:51
by merve7
Hi,
Please use overflow attribute in headerStyle prop like;

Code: Select all

<Column field="brand" header="Brand" style={{width:'40%'}} headerStyle={{overflow:'visible'}} filter={true} filterElement={brandFilter} />

Re: Resizable columns with dropdown

Posted: 22 Jan 2019, 15:57
by shmbar
It Worked.

thank you very much!