I have removed the arrow button from the JComoboBox
to make it look like a JTextField
and added it as a celleditor. The purpose is it create an AutoSuggest(not AutoComplete) JTable cell.
On Doing that the border kinda looks irking.How to change the border to make it look like textfield border on the right. I have tried removing the border created line border. But its not removing the blueish border.
Using Nimbus UI.
MCVE for the problem
import java.util.logging.Level;
import java.util.logging.Logger;
import javax.swing.BorderFactory;
import javax.swing.DefaultCellEditor;
import javax.swing.JButton;
import javax.swing.JComboBox;
import javax.swing.JFrame;
import javax.swing.JScrollPane;
import javax.swing.JTable;
import javax.swing.SwingUtilities;
import javax.swing.UIManager;
public class Sample extends JFrame {
public Sample() {
init();
}
private void init() {
JTable table = new JTable(5, 5);
DefaultCellEditor cellEditor = new DefaultCellEditor(new EditorCombo());
cellEditor.setClickCountToStart(2);
table.getColumnModel().getColumn(0)
.setCellEditor(cellEditor);
table.setRowHeight(30);
table.setCellSelectionEnabled(true);
add(new JScrollPane(table));
}
public static void main(String[] args) {
setUpUI("Nimbus");
SwingUtilities.invokeLater(new Runnable() {
@Override
public void run() {
Sample samp = new Sample();
samp.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
samp.setTitle("Table Test");
samp.pack();
samp.setLocationRelativeTo(null);
samp.setVisible(true);
}
});
}
private static void setUpUI(String ui) {
try {
for (UIManager.LookAndFeelInfo info : UIManager.getInstalledLookAndFeels()) {
if (ui.equals(info.getName())) {
UIManager.setLookAndFeel(info.getClassName());
break;
}
}
} catch (ClassNotFoundException | InstantiationException | IllegalAccessException | javax.swing.UnsupportedLookAndFeelException ex) {
Logger.getLogger(Sample.class.getName()).log(Level.SEVERE, null, ex);
}
}
class EditorCombo extends JComboBox {
public EditorCombo() {
setEditable(true);
for (int i = 0; i < 10; i++) {
addItem("Sample" + i);
}
setUI(new javax.swing.plaf.synth.SynthComboBoxUI() {
@Override
protected JButton createArrowButton() {
JButton button = new JButton() {
@Override
public int getWidth() {
return 0;
}
};
button.setBorder(BorderFactory.createEmptyBorder());
button.setVisible(false);
return button;
}
@Override
public void configureArrowButton() {
}
});
}
}
}
Maybe this will help you: Nimbus Defaults (The Java™ Tutorials > Creating a GUI With JFC/Swing > Modifying the Look and Feel)
TextField[Focused].borderPainter
TextField[Enabled].borderPainter
ComboBox:\"ComboBox.textField\"[Enabled].backgroundPainter
ComboBox:\"ComboBox.textField\"[Selected].backgroundPainter