Hola,
Necesito poder modificar el tamaño del textbox que se abre mediante la edicion de un datagrid.
como se controlan?
se entiende?
Gracias de antemano
| |||
rpta. esto se realiza en los eventos : ItemDataBound (DataGrid) RowDataBound (GridView) If e.Row.RowIndex = GridView1.SelectedIndex Then Dim txt as TextBox = CType(e.Row.FindControl("<nombre>"), TextBox) txt.Attributes.Add("width","20px") ' ó txt.Styles.Add("width","20px") End If espero te sirva cualquier consulta [email protected] [email protected] |