Hi,
in the ScheduleView control, I fill the control with appointments and SpecialSlots from 8AM to 4PM. Using the mousewheel cause that sometime, the SpecialSlots become not visible!!! When this occured, I need to force a refresh by scrolling a little bit then the SpecialSlots become visible...
Demo included (rename the JPG file to ZIP)...
Thank's
Alain
<telerik:RadGridView Grid.Row="11" Grid.Column="1" Grid.ColumnSpan="4" AutoGenerateColumns="False" ItemsSource="{Binding WorkflowView}" RowHeight="25" CanUserFreezeColumns="False" telerikQuickStart:ThemeAwareBackgroundBehavior.IsEnabled="True" IsSynchronizedWithCurrentItem="True" IsEnabled="{Binding ModelController.WorkflowHelper.IsWorkflowEditing, Converter={StaticResource InvertBoolConv}}"> <telerik:RadGridView.Resources> <Style x:Key="CellBGStyle" TargetType="telerik:GridViewCell"> <Setter Property="Background" Value="{Binding Path=BackcolorHex, Converter={StaticResource HexToColorConv}}"> </Setter> </Style> </telerik:RadGridView.Resources> <telerik:RadGridView.Columns> <telerik:GridViewDataColumn Header="Farbe"
CellStyle="{StaticResource CellBGStyle}" DataMemberBinding="{Binding Path=BackcolorHex, Converter={StaticResource HexToColorConv}}" IsReadOnly="True"/> </telerik:RadGridView.Columns></telerik:RadGridView>public object Convert(object value, Type targetType, object parameter, CultureInfo culture){ Brush retVal = new SolidColorBrush(Colors.White); if (value != null && value is ModelWorkflow) { myConverter conv = new myConverter(); retVal = conv.ToBrush(((ModelWorkflow)value).BackcolorHex); } return retVal; }Hi,
I have a project using various Telerik controls. The wizard set up my project so that the binaries are in the project tree like this:
<MyProjectPath>\lib\RCWPF\2015.1.401.45\
I want to move this whole "2015.1.401.45" directory somewhere and point my references there. That would allow me to have multiple projects reference the binaries without the need to have 83 MB of extra binaries in each project.
If I move the files and re-point the references, I can no longer use the RadGridView. Visual Studio 2013 just can't find it.
Can I move the Telerik binaries and point references to the new location? Are there any tricks involved in the process?
Thanks.
Hi
This is probably a simple thing to achieve but I'm struggling to come up with the solution!
For tasks without children there is currently no expand/collapse image displayed in the tree cell as you would expect. However, for tasks without children at level 1 would it be possible to display an image - for example a simple bullet-point style image?
Many thanks
Adrian
I have the problem, that the filter in the Telerik RadGridView has a wrong formatting for date fields. In the grid it self they are drawn correctly. I use the format: dd.mm.yyyy
Please take a look at the attached screenshot.
I set the column culture like this:
GridViewBoundColumnBase column = new GridViewDataColumn();column.Language = System.Windows.Markup.XmlLanguage.GetLanguage("de-DE");this.IsLocalizationLanguageRespected = true; // this is the instance of the RadGridViewThank you!
Hi,
I am looking for a working sample of using rad expander and grid splitter
a grid has several columns, the right most can be resize and it contains horizontal expander
Thanks in advance
Tomer

Hello,
I created multiple y axis and line serieses dynamically, but the panzoombar for y axis disappear.
How can I show the panzoombar for each y axis?
Is it possible to hide the panzoombar automatically if there is no zoom, and show the panzoombar if there is zoom.
thanks

public bool CanEndWizard<!-- Last Page --><telerik:CompletionWizardPage Title="Export Model" x:Name="Export" AllowFinish="{Binding CanEndWizard}" HeaderTemplate="{StaticResource HeaderTemplate}" ContentTemplate="{StaticResource Page4ExportModelTemplate}" SideHeaderTemplate="{StaticResource SidebarStatusTemplate}" IsSideHeaderVisible="False" ButtonsVisibilityMode="Previous,Finish,Cancel" />AllowFinish="False"