insert blank row between records

Ask a Question related to ASP.NET Data Grid Control, Design and Development.

  1. #1

    Default insert blank row between records

    i need to insert a blank row between each row of data - is this possible ?

    thanks

    mark


    mark Guest

  2. Similar Questions and Discussions

    1. WebServicesConnector delivers blank records <<<HELP>>>
      I created a data cconnection with the wizard in Flash MX 2004 BUT the datagrid displays blank records. I tryed using the list and the textboxes....
    2. blank line between records
      this sort of requirement requires custom work to be done in the itemdatabound an approach would be to check the type of cell being fired (header,...
    3. how to parse blank-line-separated records
      Hi, all -- I'm wrestling with a data file containing owners and contact info and it suddenly occurred to me that I could probably change my...
    4. Inserting blank records
      I need to import records created in filemaker to an accounting program (MYOB). It can only recognise different records if there is a blank in...
    5. Adding blank rows after a series of records
      On Wed, 23 Jul 2003 14:04:49 -0700, "Chuck Dickson" <CDICKSO@USAIRWAYS.COM> wrote: That would be pretty tough. The only way I can think to do...
  3. #2

    Default Re: insert blank row between records

    Mark,
    I think you can do it by using template columns. You have to add an extra
    control(such as label) for each template column something like below--

    <Columns>
    <asp:TemplateColumn HeaderText="whatever">
    <ItemTemplate>
    <asp:Label ID="lblLabel1" Runat=server Width=100px Text='<%#
    DataBinder.Eval(Container.DataItem, "FieldName from DataTable") %>'>
    </asp:Label>
    <asp:Label ID="lblLabel2" Runat=server Width=100px Text="">
    </asp:Label>
    </ItemTemplate>
    </asp:TemplateColumn>
    </Columns>

    Prodip

    "mark" <mark@remove.com> wrote in message
    news:G8Gsc.68$sa2.10@newsfe3-gui...
    > i need to insert a blank row between each row of data - is this possible ?
    >
    > thanks
    >
    > mark
    >
    >

    Prodip Saha Guest

  4. #3

    Default Re: insert blank row between records

    If you're binding to a datatable, you could add the blank rows to the table
    before you bind it.

    "mark" <mark@remove.com> wrote in message
    news:G8Gsc.68$sa2.10@newsfe3-gui...
    > i need to insert a blank row between each row of data - is this possible ?
    >
    > thanks
    >
    > mark
    >
    >

    Rick Spiewak Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139