This question is locked. New answers and comments are not allowed.
I am currently evaluating the Grid to see that I can achieve everything I could when using the WebForms GridView/ListView.
In the model below I have 2 properties that determine if the Edit and Delete button should show on the player row in the grid.
Is it possible to prevent the buttons from rendering using the AllowEdit & AllowDelete properties?
N.B. I am using Razor & VB.
In the model below I have 2 properties that determine if the Edit and Delete button should show on the player row in the grid.
Is it possible to prevent the buttons from rendering using the AllowEdit & AllowDelete properties?
Public
Class
Player
Public
Property
PlayerId
As
Int32
Public
Property
Forename
As
String
Public
Property
Surname
As
String
Public
Property
SportId
As
Int32
Public
Property
AllowEdit
As
Boolean
Public
Property
AllowDelete
As
Boolean
End
Class
N.B. I am using Razor & VB.