This question is locked. New answers and comments are not allowed.
Hello,
This is a follow-up to a previous question, in which I do not believe I was being clear. I am using the Telerik Silverlight RadGridView control. I am trying to emulate the inline edit functionality of the ASP.NET 2.0 Grid. That functionality allows the user to click "edit" on a row and the fields for the row change to text boxes, drop downs, etc. The user can then click "update" to preserve their changes or "cancel". The row then goes back to a read-only state. An example of the ASP.NET 2.0 Grid I'm describing can be seen here: http://msdn.microsoft.com/en-us/library/ms972948.aspx.
My question is, how do I do this same type of thing with the Telerik RadGridView control for Silverlight? I can't seem to figure it out for the life of me. Questions that are confusing me are:
This is a follow-up to a previous question, in which I do not believe I was being clear. I am using the Telerik Silverlight RadGridView control. I am trying to emulate the inline edit functionality of the ASP.NET 2.0 Grid. That functionality allows the user to click "edit" on a row and the fields for the row change to text boxes, drop downs, etc. The user can then click "update" to preserve their changes or "cancel". The row then goes back to a read-only state. An example of the ASP.NET 2.0 Grid I'm describing can be seen here: http://msdn.microsoft.com/en-us/library/ms972948.aspx.
My question is, how do I do this same type of thing with the Telerik RadGridView control for Silverlight? I can't seem to figure it out for the life of me. Questions that are confusing me are:
- How should I handle an "edit" button? Right now, I'm using a HyperlinkButton and I have an Click event handler.
- How do I put a row into "edit" mode? My solution is not doing this correctly right now
- How do I handle the user clicking "update"? Can I use a HyperlinkButton again with a Click event handler?
- How do I take a row out of "edit" mode?
Thank you!