M
Mark
Hi - I'd like to change the cssclass of the edit/update/cancel buttons
on my datagrid, but I haven't been able to figure it out - (code below
does not work) - problem is, I'm not sure how to reference the buttons,
as the column they're in may change in the datagrid depending on the
user.
Thanks for any help,
Sub dgUserList_ItemCreated(ByVal sender As Object, ByVal e As
DataGridItemEventArgs)
If e.Item.ItemType = ListItemType.EditItem Then
e.Item.CssClass = "btn"
End If
End Sub
on my datagrid, but I haven't been able to figure it out - (code below
does not work) - problem is, I'm not sure how to reference the buttons,
as the column they're in may change in the datagrid depending on the
user.
Thanks for any help,
Sub dgUserList_ItemCreated(ByVal sender As Object, ByVal e As
DataGridItemEventArgs)
If e.Item.ItemType = ListItemType.EditItem Then
e.Item.CssClass = "btn"
End If
End Sub