[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Newsgroup Home]
|
[news.eclipse.tools.ve] Re: Error Log filling up
|
Thanks , I tried that but it didn't seem to fix it. I think I may know what the problem is. I have modified the section where the visual editor creates the jTable and the visual editor doesn't like this.
Visual Editor likes this:
String[] columnNames = {"Column1", "Column2"};
Vector<String> columnNamesV = new Vector<String>(Arrays.asList(columnNames));
jTable = new JTable(getRowData(),columnNamesV);
My modified code which it doesn't like:
String[] columnNames = {"Column1", "Column2"};
Vector<String> columnNamesV = new Vector<String>(Arrays.asList(columnNames));
jTable = new JTable(getRowData(),columnNamesV){
..custom table code here including creating a rendered to modify the color of the rows
};
Any ideas ?