textCommentsEditor = new HelpedTextField("TextComments", "transaction", view);
column.setCellEditor(new DefaultCellEditor(textCommentsEditor));
column.setPreferredWidth(textCommentSize);
column = tableView.getColumn(dataModel.getColumnName(COL_ACCOUNTNUM));
accountEditor = new IntegerField("Account", "transaction", view);
column.setCellEditor(new DefaultCellEditor(accountEditor));
column.setPreferredWidth(accountIntFieldSize);
column.setCellRenderer(numberRenderer);
accountCombo = new DataComboBox(new JdbcTable("APP.Account", 2, view), true, "Account", "transaction", view);
accountCombo.loadComboBox("AccDesc", "Account", (Integer) cc.comboBox.getSelectedItemsKey());
column = tableView.getColumn(dataModel.getColumnName(COL_ACCOUNTNAME));
column.setCellEditor(new DefaultCellEditor(accountCombo));
column.setPreferredWidth(accountNameFieldSize);
column = tableView.getColumn(dataModel.getColumnName(COL_CUSTOMERNUM));
customerEditor = new IntegerField("Customer", "transaction", view);
column.setCellEditor(new DefaultCellEditor(customerEditor));
column.setPreferredWidth(accountIntFieldSize);
column.setCellRenderer(numberRenderer);
customerCombo = new DataComboBox(new JdbcTable(