Hi,
I have a grid that is editable and I want to assign a ValidationGroup to the Delete and Update functionality so that it doesn't interfere with the other controls on the page. How do I set the ValidationGroup on these controls?
Here are my Edit and Delete Grid Command Columns:
I tried using ValidationGroup but it doesn't recognize it as a property for these columns. It happens when I hit the Delete column and when I hit the Update link after clicking the Edit column..
Thanks
I have a grid that is editable and I want to assign a ValidationGroup to the Delete and Update functionality so that it doesn't interfere with the other controls on the page. How do I set the ValidationGroup on these controls?
Here are my Edit and Delete Grid Command Columns:
| <telerik:GridEditCommandColumn ButtonType="ImageButton" UniqueName="EditCommandColumn"> |
| <HeaderStyle HorizontalAlign="Center" Width="30px" /> |
| <ItemStyle CssClass="MyImageButton" HorizontalAlign="Center" /> |
| </telerik:GridEditCommandColumn> |
| <telerik:GridButtonColumn ConfirmText="Delete this product?" ConfirmDialogType="RadWindow" |
| ConfirmTitle="Delete" ButtonType="ImageButton" CommandName="Delete" Text="Delete" |
| UniqueName="DeleteColumn"> |
| <HeaderStyle HorizontalAlign="Center" Width="30px" /> |
| <ItemStyle HorizontalAlign="Center" CssClass="MyImageButton" /> |
| </telerik:GridButtonColumn> |
Thanks