Feature #240
even/odd rows colors and grid
Status:
Resolved
Priority:
Normal
Assignee:
-
Start date:
02/28/2011
Due date:
% Done:
90%
Estimated time:
Browser (if web client):
Description
Would like to have:
-even/odd rows coloring (similar as Feature 205)
-grids around cells
Regards
Files
History
Updated by Imre Tokai about 14 years ago
- File evenOddRowsColorGrid.jpg evenOddRowsColorGrid.jpg added
- % Done changed from 0 to 90
We've implemented grid and even/odd rows coloring
Should I commit the work? Trunk or branch? Should I upload the file?
Changes are related to renderer and opaque
Updated by Imre Tokai about 14 years ago
- Status changed from New to Resolved
New functions added:
elements.treeview.setCertainRowColor(2,'#54FF9F')
elements.treeview.setSelectionBgColor('#C8F526')
elements.treeview.setSelectionFgColor('#FFFFFF')
elements.treeview.setSelectionFont('Arial','0','12')
elements.treeview.setTextIdenting(20)
elements.treeview.setEvenRowColor('#F4A460');
elements.treeview.setOddRowColor('#EEAEEE');
elements.treeview.setGridColor('#0147FA')
elements.treeview.showHorizontalLines(false);
elements.treeview.showVerticalLines(false);
var fontV = application.showFontChooser()
application.output('font: '+fontV)
var arrayF = fontV.split(',')
application.output('arrayF: '+arrayF)
elements.treeview.setHeaderFont(arrayF[0],arrayF[1],arrayF[2])
elements.treeview.setHeaderFontSize('34')
var colr = application.showColorChooser()
elements.treeview.setColorHeaderFg(colr);
elements.treeview.setSelectionFont('Arial','2','12')
elements.treeview.setHeaderHeight('100')
Regards