Ask a Question related to ASP.NET Data Grid Control, Design and Development.
-
mark #1
insert blank row between records
i need to insert a blank row between each row of data - is this possible ?
thanks
mark
mark Guest
-
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.... -
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,... -
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... -
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... -
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... -
Prodip Saha #2
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
-
Rick Spiewak #3
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



Reply With Quote

