Results 1 to 3 of 3

Thread: Datagrid question

  1. #1

    Thread Starter
    Lively Member
    Join Date
    Oct 2001
    Location
    MA, US
    Posts
    78

    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

  2. #2
    Frenzied Member Fishcake's Avatar
    Join Date
    Feb 2001
    Location
    Derby, UK
    Posts
    1,092
    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.

  3. #3

    Thread Starter
    Lively Member
    Join Date
    Oct 2001
    Location
    MA, US
    Posts
    78

    Thumbs up

    Thank you,
    It did work.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width