As per this https://www.telerik.com/forums/add-delete-button-to-each-row-in-radgrid I am trying to add a delete button onto the radgrid using GridButtonColumn.
I have followed through the sample that uses programmatic databinding using PageMethods webservices and am finding that when I get an ItemCommand postback server side the data item and the data key values are blank. I have specified to use DataKeyValues and ClientDataKeyValues but everything on the server is empty.
I have turned my attention to doing things client side instead and am trying to get the CommandArgument of the item which I can then use in the OnCommand javascript function. I have tried using <%#Eval("GUID")%> but I get errors. The link above suggests using a LinkButton instead.
My question is this, if I use a LinkButton and presumably style that with a delete image, how do I add the rad window confirmation to that button?