Posted 26 Jul 2010 Link to this post
Posted 29 Jul 2010 Link to this post
Posted 11 Dec 2012 Link to this post
Posted 12 Dec 2012 Link to this post
You can control the grid validation using ValidateOnDataErrors property. For example you can set it to None.
Explore the entire Telerik portfolio by downloading Telerik DevCraft Ultimate.
<
telerik:RadGridView
ValidatesOnDataErrors
=
"None"
Grid.Row
"1"
Margin
"12"
AutoGenerateColumns
"False"
CanUserFreezeColumns
IsFilteringAllowed
IsReadOnly
"True"
ItemsSource
"{Binding Documents}"
RowHeight
"32"
RowIndicatorVisibility
"Collapsed"
SelectedItem
"{Binding SelectedDocument, Mode=TwoWay}"
ShowGroupPanel
>
telerik:RadGridView.Columns
telerik:GridViewDataColumn
Header
"viewed"
telerik:GridViewDataColumn.CellTemplate
DataTemplate
Image
HorizontalAlignment
"Center"
VerticalAlignment
Source
"/Resources/check.png"
Stretch
Visibility
"{Binding Viewed, Converter={StaticResource BooleanToVisibilityConverter}}"
/>
</
DataMemberBinding
"{Binding FileName}"
"file name"
You may need to set the same property for your bindings in your custom templates.
I'm not sure where you have set the property? Can you clarify? The code in your CellTemplate is exactly the same with the code from your previous reply.