Columnspan in Datagrid ?

A

ajaymehra

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
 
A

Alvin Bruney [MVP]

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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,756
Messages
2,569,534
Members
45,007
Latest member
OrderFitnessKetoCapsules

Latest Threads

Top