|
-
Feb 9th, 2004, 10:41 AM
#1
Thread Starter
Lively Member
Datagrid question
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
-
Feb 9th, 2004, 11:55 AM
#2
You can do it using a style sheet, containing a class such as:
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;
}
and then applying that class to your datagrid.
-
Feb 9th, 2004, 03:20 PM
#3
Thread Starter
Lively Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|