gridBagConstraints.insets = new Insets(0, borderWidth, 0, borderWidth);
this.filterController = filterController;
//Basic layout
//Item to search for
filteredPropertiesComponent = new JComboBox();
filteredPropertiesModel = new ExtendedComboBoxModel();
filteredPropertiesComponent.setModel(filteredPropertiesModel);
filteredPropertiesComponent.addItemListener(new FilteredPropertyChangeListener());
add(Box.createHorizontalGlue(), gridBagConstraints);
gridBagConstraints.gridx++;
filteredPropertiesComponent.setAlignmentY(Component.TOP_ALIGNMENT);