Hi,
I have CheckBoxEditor type of GridViewDataColumn, this column displayes the value(True/False) depending upon the checked status the checkbox.
Is there anyway to display, checkbox itself instead of True/False?
Thanks
Virendra.k
5 Answers, 1 is accepted
With our latest service pack the grid will display disabled check box. Please check our online examples:
http://demos.telerik.com/silverlight/#GridView/DataSources
Best wishes,
Vlad
the Telerik team
Instantly find answers to your questions on the new Telerik Support Portal.
Check out the tips for optimizing your support resource searches.
I have also attempted to implement a custom column as shown here. The value is displayed correctly, but when I change the value and try to obtain it in the code, it is not set. Any help would be appreciated.
<telerikGrid:GridViewColumn Header="Friendly" HeaderTextAlignment="Center" Width="85">
<telerikGrid:GridViewColumn.CellStyle>
<Style TargetType="telerikGridView:GridViewCell">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="telerikGridView:GridViewCell">
<CheckBox HorizontalAlignment="Center" VerticalAlignment="Center" IsChecked="{Binding IsFriendly}"></CheckBox>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
</telerikGrid:GridViewColumn.CellStyle>
</telerikGrid:GridViewColumn>
You may need TwoWay binding for this property - can you check and let me know what will be the result in this case?
All the best,
Vlad
the Telerik team
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Public Issue Tracking system and vote to affect the priority of the items.
Thanks a bunch!
-Danny
