Jump to content

Disable line in UnidbGrid


ldb68

Recommended Posts

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.

Link to comment
Share on other sites

  • 2 years later...

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

Link to comment
Share on other sites

×
×
  • Create New...