jtable.setStyle("journalData");
jtable.setSelectedStyle("journalSelected");
// some settings needed for XUI 3.2rc2b update
jtable.setRowHeight(30); // Better to catch the line on a touch screen (minimal height I think)
XStyle style = currentProject.getStyleManager().getStyle("journalBorder");
Color borderColor = style.getStyleAsColor(XStyle.COLOR_FORE );
jtable.setGridColor(borderColor); // jtable.setBorderStyle("journalBorder"); above is not working anymore
style = currentProject.getStyleManager().getStyle("journalData");
Color backgoundColor = style.getStyleAsColor(XStyle.COLOR_BACK);
jtable.setBackground(backgoundColor); // TODO This line is not working
jpanel.setBorder(jtable.getBorder()); // TODO there is a small shift between the vertical header grid lines and the other vertical grid lines. This line is not working
// initialize the journal table header
XModel jmodel = createModel();