I have a RadGrid that contains a GridTableView in the DetailTables, as such:
...
So, the above button, "RemoveRelatedProductButton" shows up allright, but whenever I press it - nothing happens.
I have this in the code behind:
_relatedProductsGrid = FindControl("RelatedProductsGrid") as RadGrid;
_relatedProductsGrid.ItemCommand += RelatedProductsGrid_ItemCommand;
And finally:
protected void RelatedProductsGrid_ItemCommand(object source, Telerik.Web.UI.GridCommandEventArgs e)
{
if (e.CommandName == "Delete")
etc.
However, this method never fires. What do I need to do?