作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我使用的代码如下.. bt 当我单击 jtable 单元格中的 jcalendarcombo 时,它会给出 classCastException 。请帮助我..感谢adv。
TableColumn closedDateColumn = resultTable3.getColumnModel().getColumn(7);
MyDateListener listener1 = new MyDateListener();
cmbCalanderDate = new JCalendarCombo(JCalendarCombo.DISPLAY_DATE, true); //Calander Combobox for selecting date
cmbCalanderDate.setDateFormat(new SimpleDateFormat("yyyy-MM-dd"));
closedDateColumn.setCellEditor(new DefaultCellEditor(cmbCalanderDate));
cmbCalanderDate.addDateListener(listener1);
最佳答案
您需要一个 JDateChooserCellEditor
就像他们显示的 here .
closedDateColumn.setCellEditor(new new JDateChooserCellEditor());
另一种方法是使用setDefaultEditor()
。
table.setDefaultEditor(Date.class, new JDateChooserCellEditor());
关于java - 我想将 jcalendarcombo 添加到 jtable 单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19589052/
我使用的代码如下.. bt 当我单击 jtable 单元格中的 jcalendarcombo 时,它会给出 classCastException 。请帮助我..感谢adv。 TableColumn c
我在一个简单的界面上使用 jcalendarcombo,用户可以在其中选择日期。当我尝试将日期保存到数据库时,我收到如下错误“com.MySQL.jdbc.MysqlDataTruncation:数据
我是一名优秀的程序员,十分优秀!