Connecting Tech Pros Worldwide Help | Site Map

Columnspan in Datagrid ?

ajaymehra
Guest
 
Posts: n/a
#1: Nov 18 '05

Hi,
I am using a dataview as my datagrids datasource and binding i
dynamically.
Can I specify a column span for a single row of a datagrid?

Thanks in advance,
Aja

ajaymehr
-----------------------------------------------------------------------
Posted via http://www.mcse.m
-----------------------------------------------------------------------
View this thread: http://www.mcse.ms/message367697.htm

Alvin Bruney [MVP]
Guest
 
Posts: n/a
#2: Nov 18 '05

re: Columnspan in Datagrid ?


sure,
do so in the itemdatabound. each row gets bound in this event so you can
pick your row, apply column span and then mark that row as dirty so
columnspan doesn't get applied to every row. Use viewstate for this
ViewState["DIRTY"] = "True"

if(e.item.itemtype = = listitem.item)
{
if(ViewState["DIRTY"] == null)
e.item.cells[2].ColumnSpan = 2;
}

roughly
--
Regards,
Alvin Bruney [ASP.NET MVP]
Got tidbits? Get it here...
http://tinyurl.com/3he3b
"ajaymehra" <ajaymehra.117nir@mail.mcse.ms> wrote in message
news:ajaymehra.117nir@mail.mcse.ms...[color=blue]
>
> Hi,
> I am using a dataview as my datagrids datasource and binding it
> dynamically.
> Can I specify a column span for a single row of a datagrid?
>
> Thanks in advance,
> Ajay
>
>
> ajaymehra
> ------------------------------------------------------------------------
> Posted via http://www.mcse.ms
> ------------------------------------------------------------------------
> View this thread: http://www.mcse.ms/message367697.html
>[/color]


Closed Thread