Hello,
It's possible to set to transparent the background color when a Cell is in "Edit mode".
Now I'm getting one of the default template colors.
Regards!
<
telerik:RadExpander x:Name="ValidationExpander" BorderBrush="#888888" BorderThickness="1" Background="#EEEEEE"
IsExpanded="False" MinWidth="500" Canvas.Bottom="0" ExpandDirection="Up" Canvas.Left="0">
<telerik:RadExpander.Header>
<TextBlock x:Name="expanderCaption" Foreground="#000000" Visibility="Visible" />
</telerik:RadExpander.Header>
<telerik:RadExpander.Content>
<local:MessageBoxControl DataContext="{Binding MessageBoxViewModel, UpdateSourceTrigger=PropertyChanged}"
VerticalAlignment="Top"/>
</telerik:RadExpander.Content>
</telerik:RadExpander>

hi,
can any one know, how to remove recurring and other tabs from Appointment dialog
<Style x:Key="CheckBoxColumn" TargetType="{x:Type telerik:GridViewCell}"> <Setter Property="FontWeight" Value="Bold"/> </Style><telerik:GridViewCheckBoxColumn EditorStyle="{StaticResource CheckBoxColumn}" Header="Eligibility" IsReadOnly="True" DataMemberBinding="{Binding Verified}"> <telerik:GridViewCheckBoxColumn.CellStyle> <Style TargetType="telerik:GridViewCell"> <Setter Property="Background" Value="{Binding VerificationStatus, Converter={StaticResource MyConverter2}}" /> </Style> </telerik:GridViewCheckBoxColumn.CellStyle> </telerik:GridViewCheckBoxColumn> <UserControl.Resources>
<Style x:Key="GridViewRowStyle1" TargetType="{x:Type telerik:GridViewRow}">
<Setter Property="Height" Value="15"/>
<Setter Property="MinHeight" Value="15"/>
<Setter Property="VerticalAlignment" Value="Top"/>
</Style>
</UserControl.Resources>
....
<telerik:RadGridView x:Name="GridViewAnaClienti" IsReadOnly="True" Grid.Row="2" BorderThickness="1" FontSize="9"
RowStyle="{StaticResource GridViewRowStyle1}" >
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn Header="Codice" Width="80" DataMemberBinding="{Binding Codice}" />
<telerik:GridViewDataColumn Header="Ragione Sociale" MinWidth="280" DataMemberBinding="{Binding RagioneSociale}"/>
<telerik:GridViewDataColumn Header="Indirizzo" MinWidth="270" DataMemberBinding="{Binding Indirizzo1}"/>
...
</telerik:RadGridView.Columns>
</telerik:RadGridView>
...
</UserControl>
attached file: example of the result
Hello
Could guide how to validate each page of the RadWizard control? Ideally it would be to validate current page when the Next button is clicked. Then in case of errors on the page move to the next page would be cancelled.
Best regards
Szymon
Hi
I have a GridView (1) with expandable rows. When a row is expanded it shows a tab control. On the second tab is another GridView (2).
Drag and Drop works on the GridView (1) but not on the GridView (2).
They both display collections of different objects. On GridView (2) when I drag it's okay...but when I drop an error shows that it is expecting an object of type that is displayed in GridView (1). I am not sure how to put this right.
Please help.
There's a ControlTemplate named "AutoCompleteStringFilterEditorTemplate" in the GridView which looks like this:
<ControlTemplate x:Key="AutoCompleteStringFilterEditorTemplate" TargetType="grid:AutoCompleteStringFilterEditor"> <Grid MinWidth="100"> <Grid.ColumnDefinitions>Hi,
I need to know how to set the focus to a TextBox in the RowDetailsTemplate of my RadGridView when the user adds a new row with the NewRow-Row.
The best would be when the Cells of the NewRow are set to ReadOnly while the user inputs the values to the Controls of the RowDetailsTemplate, is this possible? How?
Thanks for all helpfull answers :)
Greets Alexander