This question is locked. New answers and comments are not allowed.
I've added a couple of controls to a Silverlight GridView control using code similar as follows:
<telerik:GridViewDataColumn>
<telerik:GridViewDataColumn>
<telerik:GridViewDataColumn.CellEditTemplate>
<DataTemplate>
<telerik:RadButton x:Name="btnAddToCart" Content="Add To Cart" />
</DataTemplate>
</telerik:GridViewDataColumn.CellEditTemplate>
</telerik:GridViewDataColumn>
However, when running the project in debug mode I cannot see any of these controls until I double click on the grid row itself. Looking at the examples provided, it appears I'm settting everything correctly. So the question is what does it take to display controls added to a grid when the grid is populated with data?
