Hi,
It is possible to show only the horizontal lines in a datagrid, without the border?
So far, if I don't show the border, the horizontal lines does not show.
Thank you,
svatasoiu
Printable View
Hi,
It is possible to show only the horizontal lines in a datagrid, without the border?
So far, if I don't show the border, the horizontal lines does not show.
Thank you,
svatasoiu
You can do it using a style sheet, containing a class such as:
and then applying that class to your datagrid.Code:.gridlines
{
border-top-color:#ffff99;
border-top-style:solid;
border-top-width:1px;
border-bottom-color:#ffff99;
border-bottom-style:solid;
border-bottom-width:1px;
}
Thank you,
It did work.