Here is my Checkbox in RadGridView which is not implemented in MVVM. I would like to implement this MVVM.
I used interaction triggers but the command is not getting fired. How can I do this ?
<telerik:GridViewDataColumn Header="Delete" Width="60"> <telerik:GridViewDataColumn.CellTemplate> <DataTemplate> <CheckBox HorizontalAlignment="Center" IsChecked="{Binding IsDeleted, Mode=TwoWay}" > <i:Interaction.Triggers> <i:EventTrigger EventName="Checked"> <cmd:EventToCommand Command="{Binding DiagramChecked}" /> </i:EventTrigger> </i:Interaction.Triggers> </CheckBox> </DataTemplate> </telerik:GridViewDataColumn.CellTemplate> </telerik:GridViewDataColumn><telerik:GridViewDataColumn Header="Delete" > <telerik:GridViewDataColumn.CellTemplate> <DataTemplate> <CheckBox IsChecked="{Binding IsDeleted, Mode=TwoWay }" Checked="ToggleButton_OnChecked" Unchecked="ToggleButton_OnUnchecked"> </CheckBox> </DataTemplate> </telerik:GridViewDataColumn.CellTemplate> </telerik:GridViewDataColumn> In this thread http://www.telerik.com/forums/prism-and-rad-window you have a demo for how to use a RadWindow as the main window. However, when you switch to using the NoXAML dlls, the window does not show. I should also note that I am currently using the demo version, in case that matters. Thanks for any help with this!
Hi,
when I export a document as pdf I obtain always a giant file.
So I executed this simple test, I loaded a xaml 214Kb doc file, I save it as Pdf and I obtain a 4257Kb file!!
Why?
Working with real files that contains 100/200 images I obtain files over 1 Gb.
Thank's marc.

Hi,
We have customised the RadListBox control for our use and are also using CollectionViewSource for grouping. The problem is that the vertical scroll is not showing when there is only a single group.
If there are more than one groups the vertical scroll appears as usual when needed.
We are using a WrapPanel for the ItemsPanelTemplate and have disabled the Horizontal Scrollbar so the items are only stacked vertically when the control is resized.
Please suggest what can be wrong.
Regards
Apar
StyleManager.ApplicationTheme = new VistaTheme();Hi~
As following picture, selected row of radgridview does not display!
Applied Theme is VisualStudio2013.
Give me some hint! plz.
version is 2014. q3.
<telerik:RadGridView x:Name="datas"
AutoGenerateColumns="False"
CanUserFreezeColumns="False"
CanUserResizeColumns="True"
ShowGroupPanel="False"
RowIndicatorVisibility="Collapsed"
AutoExpandGroups="True"
IsReadOnly="False"
FontFamily="{Binding ElementName=control,Path=FontFamily}"
FontSize="{Binding ElementName=control,Path=FontSize}"
FontWeight="{Binding ElementName=control,Path=FontWeight}"
​
Hello,
I want to customize the appearance of the panzoombar, can you help me to do it?
I use the version of Telerik.Windows.Controls.Chart.dll is 2012.2.1503.40.
Thanks

Hi
I set ItemSource property of the RadGridView from the code behind as
tTaxoGrid.ItemsSource=taxoTable
The binding occurs in GridViewDataColumns but it fails in RowDetailsTemplate. Following is the XAML I am using. Here txtRemarks is empty.
Even if I use the same binding property as in GridViewDataColumns (e.g, Species), that also fails displaying in RowDetailsTemplate.
Please assist me in this regard
Thank you
<Grid.Resources>
<DataTemplate x:Key="RowDetailsTemplate">
<TextBlock Name="txtRemarks" Text="{Binding Remarks}" />
</DataTemplate>
</Grid.Resources>
<telerik:RadGridView Name="tTaxoGrid" RowDetailsTemplate="{StaticResource RowDetailsTemplate}" AutoGenerateColumns="False">
<telerik:RadGridView.Columns>
<telerik:GridViewToggleRowDetailsColumn />
<telerik:GridViewDataColumn Header="ID" IsVisible="False" DataMemberBinding="{Binding ID}" />
<telerik:GridViewDataColumn Header="Species" DataMemberBinding="{Binding Species}" />
<telerik:GridViewDataColumn Header="Common Name" DataMemberBinding="{Binding Common_Name}" />
<telerik:GridViewDataColumn Header="Sub Order" DataMemberBinding="{Binding Sub_Order}" />
<telerik:GridViewDataColumn Header="Family" DataMemberBinding="{Binding Family}" />
</telerik:RadGridView.Columns>
</telerik:RadGridView>
