我有一个颜色编辑JDialog,用户可以在其中添加/删除/编辑颜色。颜色显示在从DB填充的Jtable中。UI包含一个txtField,由于TableRowSorter,它允许过滤。Jtable使用默认的TableModel,在用户选择删除一行之后,例如我做了一个model.remove行(tableau.getSelectedRow())来刷新模型。
我的问题是:当用户不使用分类器并单击delete(删除)时,一切正常,JTable立即更新以表示此操作,即从JTable中删除相应的行,但当用户在输入过滤器的情况下执行相同的操作(TableRowSorter进行过滤)时,JTable中不会出现视觉反馈,即删除的行仍然可见。
1)无过滤:我选择带有FooColor7的行
2) 然后我点击删除按钮:带有FooColor7的行被删除,JTable显示了这一点。
现在是“马车”行为:
3) 过滤:我用FooColor3选择行
4)然后我按下删除按钮:即使行从DB中正确删除,UI也没有变化...
这里有一种SSCCE(某种程度上是因为没有依赖项就无法工作,而依赖项太长,无法放在这里):
public class DialogEditColors extends JDialog implements ActionListener, KeyListener
{
final TableRowSorter<TableModel> sorter;
private JTable table = null;
private DefaultTableModel model = null;
private JPanel panelBoutons = null;
private JTextField txtFieldSearch;
private JLabel lblTitle;
private JButton btnAdd , btnDelete, btnEdit;
private JButton btnCancel, btnSave;
private JScrollPane scroller;
private ColorDao colorDao= new ColorDao(Share.connection);
public DialogEditColors()
{
super();
setSize(439, 313);
setTitle(" Edition couleurs");
getContentPane().setLayout(null);
setModal(true);
setResizable(false);
setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
setLocationRelativeTo(null);
btnSave = new JButton("Enregistrer");
btnSave.setBounds(317, 247, 89, 26);
btnSave.addActionListener(this);
btnCancel = new JButton("Annuler");
btnCancel.setBounds(214, 247, 89, 26);
btnCancel.addActionListener(this);
btnAdd = new JButton("");
btnAdd.setBounds(new Rectangle(10, 8, 33, 26));
btnAdd.addActionListener(this);
btnDelete = new JButton("");
btnDelete.setBounds(new Rectangle(53, 8, 33, 26));
btnDelete.addActionListener(this);
btnEdit = new JButton("");
btnEdit.setBounds(new Rectangle(96, 8, 33, 26));
btnEdit.addActionListener(this);
panelBoutons = new JPanel();
panelBoutons.setBorder(new LineBorder(Color.GRAY));
panelBoutons.setBounds(27, 11, 378, 43);
panelBoutons.setLayout(null);
txtFieldSearch = new JTextField("", 10);
txtFieldSearch.setBounds(193, 9, 175, 24);
panelBoutons.add(txtFieldSearch);
txtFieldSearch.addKeyListener(this);
Object[][] data = new Object[colorDao.findAll().size()][2];
String[] title = { "Couleur", "Description" };
int i = 0;
for (Couleur coul : colorDao.findAll())
{
data[i][0] = coul.getNom();
data[i][1] = coul.getDescription();
i++;
}
model = new DefaultTableModel(data, title);
table = new JTable(model)
{//THIS ALLOWS TO ALTERNATE THE BACKGROUND COLOR OF ROWS
public Component prepareRenderer(TableCellRenderer renderer, int row, int column)
{
Component returnComp = super.prepareRenderer(renderer, row, column);
Color alternateColor = new Color(242, 242, 242);
Color whiteColor = Color.WHITE;
if ( !returnComp.getBackground().equals(getSelectionBackground()) )
{
Color bg = (row % 2 == 0 ? alternateColor : whiteColor);
returnComp.setBackground(bg);
bg = null;
}
return returnComp;
};
};
table.setSelectionMode(ListSelectionModel.SINGLE_SELECTION);
table.setCellSelectionEnabled(true);
table.setColumnSelectionAllowed(true);
sorter = new TableRowSorter<TableModel>(model);
table.setRowSorter(sorter);
scroller = new JScrollPane(table);
scroller.setBounds(27, 65, 378, 171);
addComponents();
setVisible(true);
}//END OF CONSTRUCTOR
private void addComponents()
{
getContentPane().add(scroller);
getContentPane().add(btnSave);
getContentPane().add(btnCancel);
panelBoutons.add(btnAdd);
panelBoutons.add(btnDelete);
panelBoutons.add(btnEdit);
getContentPane().add(panelBoutons);
}////END OF METHOD
public void actionPerformed(ActionEvent e)
{
if ( e.getSource() == btnDelete )
{
if ( table.getSelectedRowCount() != 0 )
{//THERE IS A CHOSEN ROW IN JTABLE
String selectedColor = (table.getValueAt(table.getSelectedRow(), table.getSelectedColumn())).toString();
//TEST THE READONLY ATTRIBUTE OF THE COLOR
if ( colorDao.findByNom(selectedColor).get(0).getReadOnly() == true )
{//THE COLOR'S READONLY ATTRIBUTE IS TRUE
JOptionPane.showMessageDialog(this, "This item is readOnly: impossible to delete it!");
}
else
{//THE COLOR'S READONLY ATTRIBUTE IS FALSE
int response = JOptionPane.showConfirmDialog(this, "Are you sure you
want to delete this color?", "Confirmation", JOptionPane.YES_NO_OPTION, JOptionPane.WARNING_MESSAGE);
if ( response == 0 ) //CONFIRMED
{//FIRST DELETE THE COLOR FROM DB
colorDao.delete(colorDao.findByNom(selectedColor).get(0));
//THEN REFRESH JTABLE TO TAKE DELETION INTO ACCOUNT
model.removeRow(table.getSelectedRow());
table.repaint();
}
}
}
else
{//NO CHOSEN COLOR
JOptionPane.showMessageDialog(this, "No chosen color!");
}
}
else if ( e.getSource() == btnCancel )
{
this.dispose();
}
}//END OF METHOD
public void keyReleased(KeyEvent e)
{
if ( e.getSource() == txtFieldSearch )
{
String text = txtFieldSearch.getText();
if ( text.length() == 0 )
{
sorter.setRowFilter(null);
}
else
{
sorter.setRowFilter(RowFilter.regexFilter("(?i)" + text));
}
((AbstractTableModel) table.getModel()).fireTableDataChanged();
}
}//END OF METHOD
}////END OF CLASS
知道吗?
model.remove行(table.getSelectedRow());table.repaint();
>
由于您正在对数据进行排序,因此可能从TableModel中删除了错误的行。首先需要将视图索引转换为模型索引:
例如:
int modelIndex = table.convertRowIndexToModel( table.getSelectedIndex() );
model.removeRow( modelIndex );
我有这样的代码:
所有人。这是一个带有elasitcsearch文档url的简单测试代码
问题 你想要调用一个没有参数的函数,但不希望使用括号。 解决方案 不管怎样都使用括号。 另一个方法是使用 do 表示法,如下: notify = -> alert "Hello, user!" do notify if condition 编译成 JavaScript 则可表示为: var notify; notify = function() { return alert("Hello,
我想转换 对此: 不幸的是,我 我该怎么修理呢?
以下代码在应用筛选后不会正确更新当前datatable行计数。有时我必须在输入文本后按两次过滤器输入框中的enter键,这样计数才会正确更新。而且有时它只是在我键入文本而不是按enter键之后才起作用。有时我也可以只键入一次enter键,计数就会正确更新。我不明白为什么我会有这种不同的行为。也许JSF/Primefaces专家可以帮助我理解这一点?
我有一个表,其中包括列'buyer'、'seller'和'buyer_powat'。每笔购买都显示为单独的一行,其中包含买方名称、卖方名称和已购买的金额。 是否可以使用一个查询来显示所有没有从卖家那里购买的不同买家? 例如,如果我有“卖方A”,我想找到所有没有从卖方A购买的不同买家。我遇到了麻烦,因为下面的查询返回所有不是卖方A的交易,其中包括许多确实在另一行从卖方A购买的买家。