[CLOSED] GridPanel Lines

  1. #1

    [CLOSED] GridPanel Lines



    I'm trying to remove the lines that appear in the GridPanel. However, so I updated the .css entry for the x-grid3-row style, but it's not giving me the desired results.

    Am I editing the correct style to hide/remove lines from a GridPanel?
  2. #2

    RE: [CLOSED] GridPanel Lines

    I'd also like to only apply it to one grid, not all of the grids on the page.

    Thanks.


  3. #3

    RE: [CLOSED] GridPanel Lines

    Sorry. Figured it out.

    I added the following to the <style> header.

    <style type="text/css">
    .grid-nolines .x-grid3-row { border-color:#ffffff; }
    </style>
    Then on the GridPanel made the Cls="grid-nolines".

    This seems to work, except now it takes away the "border" around the MouseTracking style. Going to figure that one out now.

    Thanks.

  4. #4

    hide border columns

    In GRID PANEL:
    <ext:GridPanel ID="GridPanel1" runat="server" Width="1000" AutoExpandColumn="ncontabili"
    Icon="Calculator" StripeRows="true" TrackMouseOver="true" Height="620"
    BodyCssClass="gridSinBordesVerticales">

    in STYLES:

    .gridSinBordesVerticales .x-grid3-body .x-grid3-row {
    border: 1px solid white !important;
    }
    .gridSinBordesVerticalesr .x-grid3-row-selected {
    border: none !important;
    }
    .gridSinBordesVerticales .x-grid3-body .x-grid3-row table.x-grid3-row-table > tbody > tr > td {
    border: 1px solid white !important;
    }
    .gridSinBordesVerticalesr .x-grid3-row-selected table.x-grid3-row-table > tbody > tr > td {
    border: none !important;
    }

Similar Threads

  1. Replies: 9
    Last Post: Sep 15, 2011, 1:58 PM
  2. [CLOSED] Treegrid with plus signs and lines
    By PLoch in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jul 28, 2011, 2:57 PM
  3. Grid lines to enter
    By heberluiz in forum 1.x Help
    Replies: 0
    Last Post: Mar 19, 2010, 11:26 AM
  4. [CLOSED] Blank lines in combobox
    By Sharon in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Aug 03, 2009, 6:05 AM
  5. [CLOSED] How to show grid lines in the gridPanel
    By Etisbew in forum 1.x Legacy Premium Help
    Replies: 7
    Last Post: Jun 10, 2009, 5:10 AM

Posting Permissions