> Ok this is almost that I want. But in your solution filters not resizable
Do you mean that you want the width of the filter field to match the width of the column? > And I want that appearance be similar row. Is it possible? Yes. There are a couple of ways you could do this. One is to use another TableView as your filter row, and attach an editor to it. You can easily keep the column widths in sync by setting the filter TableView's column source to your main table. Another approach would be to use a TablePane and listen for column width changes on your main table, updating your table pane column widths accordingly. But I think that in the long run this could be more work than the other option. G
