How can I have a datagridview that will autogenerate a textbox instead of a label?

link|improve this question

69% accept rate
feedback

2 Answers

up vote 2 down vote accepted

In short, you can't. You could inherit from a gridview and implement it yourself. It could look something like this:

Public Class MyGrid
Inherits GridView


Private Sub MyGrid_RowDataBound(ByVal sender As Object, ByVal e As System.Web.UI.WebControls.GridViewRowEventArgs) Handles Me.RowDataBound
  If Me.AutoGenerateColumns = True Then
    If e.Row.RowType = DataControlRowType.DataRow Then
        For Each c As TableCell In e.Row.Cells
            Dim tb As New TextBox()
            tb.Text = c.Text
            c.Controls.Clear()
            c.Controls.Add(tb)
        Next
    End If
    End If
End Sub
link|improve this answer
For the record it doesnt need to overload the class, if its just for a single problem you can just handle dgv.RowDataBound. Thousand thanks. – Dested Feb 6 '09 at 21:35
feedback

Can you not use a template column with a textbox inside it? Then use eval to populate the value?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.