ldb68 Posted March 12, 2012 Posted March 12, 2012 Is possible to disable lines (vertical and/or horizontal) in a UniDbGrid? thanks
AtoZ Posted March 14, 2012 Posted March 14, 2012 One way is to add to the CSS to override default. .x-grid-with-col-lines .x-grid3-row td.x-grid3-cell { border-right:0px; } To make it for each grid you need to set different cls names to items as this one is global.
Administrators Farshad Mohajeri Posted March 14, 2012 Administrators Posted March 14, 2012 You can use below code to disable col lines but there is no handy solution for row lines. function OnBeforeInit(sender) { sender.columnLines=false; }
DFong Posted September 28, 2014 Posted September 28, 2014 You can use below code to disable col lines but there is no handy solution for row lines. function OnBeforeInit(sender) { sender.columnLines=false; } This doesn't seem to work for me. Is there another way to disable column lines in a uniDBGrid? Thanks! version 0.97 Build 1084 Delphi XE2
Administrators Farshad Mohajeri Posted September 28, 2014 Administrators Posted September 28, 2014 function beforeInit(sender, config) { config.columnLines=false; config.rowLines=false; }
AlbertoVesx Posted September 28, 2014 Posted September 28, 2014 function beforeInit(sender, config) { config.columnLines=false; config.rowLines=false; } All this features can be implemented as properties? or have to be set with javascript only?
Administrators Farshad Mohajeri Posted September 28, 2014 Administrators Posted September 28, 2014 Yes, actually I will implement them in next version. They're simply forgotten to be implemented. 1
Recommended Posts