This question is locked. New answers and comments are not allowed.
Hello,
I am trying to use the GridView as shown in http://demos.telerik.com/silverlight/#GridView/RowDetails demo, with two differences:
1) I want the GridView to only show the Details, not the rows itself (in this demo, on the right, choose Visible under "Inline Details Visibility Mode" to see the detailed rows).
2) I want the Details to be editable
Is there a way to achieve this using GridView? I am thinking of creating my own GridView based on the Telerik GridView which will have the above look&feel and functionality. Something like below:
I am trying to use the GridView as shown in http://demos.telerik.com/silverlight/#GridView/RowDetails demo, with two differences:
1) I want the GridView to only show the Details, not the rows itself (in this demo, on the right, choose Visible under "Inline Details Visibility Mode" to see the detailed rows).
2) I want the Details to be editable
Is there a way to achieve this using GridView? I am thinking of creating my own GridView based on the Telerik GridView which will have the above look&feel and functionality. Something like below:
namespace
MyControls {
public class MyGridView : RadGridView
{
public MyGridview()
{
............
}
}
}
Thanks,
Naveed