Datagrid columns

  • Thread starter Thread starter Darin
  • Start date Start date
D

Darin

I need to create a column with 4 links in that column
that take 4 different actions against that row when
clicked.

I do not see how to add 4 links under one column using
the datagrid's property builder.

Can anyone give me any direction?

Thanks.
 
Can you add the links by actually sending the text as HTML with hyperlinks
for the cell/column?

For example the text would be:

"<a href=\"firstLink.aspx\">First Link</a> <a
href=\"secondLink.aspx\">Second Link</a> <a href=\"thirdLink.aspx\">Third
Link</a>"

You could then concatenate in any dynamic text as you add multiple rows.

I hope that helps!

-Darrin
 
How about template columns. With that you can add any no. of linkbuttons and
bind to diff columns and do lot of things.
 

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

Similar Threads

Columnwidth datagrid webform 1
sorting datagrid columns 2
Controls 3
DataGrid\Image 1
Add new row in datagrid through javascript 1
DATAGRID WITH HIDDEN ID COLUMN? 3
DataGrid Editing! 1
Datagrid and SQL Count 2

Back
Top