Pregunta

I have a formview that I want to disable some of the automatically generated buttons on under certain conditions (i.e. certain users can't delete). For a detailsview, I can simply use:

dvInstance.AutoGenerateDeleteButton = false;

However the same option does not exist for a formview. How can I disable the automatically generated buttons for a formview?

¿Fue útil?

Solución

That's because it is a different web control. To achieve what you want you will need to specify the form's templates (ItemTemplate, EditItemTemplate and FooterTemplate) and then provide your own command buttons if required.

Hope it helps

Leo

Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top