Hi all...
I have a requirement to be able to drag the data contained within a group to another grid by dragging the group header row.
Anyone have any ideas as to if/how this could be achieved?
Jamie
Hello Team,
I have updated the latest Telerik Version(2016 Q3) and after update I am seeing "True" value instead of "And/Or" in the Filter. Please look at the Screenshot for more information.
Hi,
I added a GridColumn in binding with byte property, when I try to filter with value greater thant 255 I receive an exception.
Thi is my grid, my column "Ultima Revisione" is a byte,
When I try to filter (for example "106", see attached screenshot), it's all ok, but if I add "8", I receive an overflow exception, because byte can't compare with a value 1068.
I thought the filter handles all types of primitive variables....
How can I resolve this issue? (Do not tell me to do a string variable alternative ...)
<telerik:RadGridView x:Name="radGridView" Style="{StaticResource ListStyle}" ItemsSource="{Binding Items}" MouseDoubleClick="RadGridViewMouseDoubleClick" SelectedItem="{Binding SelectedItem,Mode=TwoWay}" IsLocalizationLanguageRespected="False"><telerik:RadGridView.Columns> <telerik:GridViewDataColumn DataMemberBinding="{Binding Codice}" Header="Codice"/> <telerik:GridViewDataColumn DataMemberBinding="{Binding Descrizione}" Header="Descrizione"/> <telerik:GridViewCheckBoxColumn DataMemberBinding="{Binding Ricambio}" Header="Ricambio"/> <telerik:GridViewDataColumn DataMemberBinding="{Binding CodiceValuta}" Header="Valuta"/> <telerik:GridViewDataColumn DataMemberBinding="{Binding UltimaRevisione}" Header="Ultima Revisione"/> <telerik:GridViewDataColumn DataMemberBinding="{Binding UltimaRevisioneReference.InizioValidità , StringFormat=\{0:d\}}" Header="Inizio Validità "/></telerik:RadGridView.Columns>Hi
I want ComboBoxes with CheckBoxes. I have use the code in this Post. I am able to get the combobox Items with Checkboxes.But If I Check multiple Items,it is not reflecting in the ComboBox. I think I am doing wrong binding in the SelectionDataBoxTemplate.Could you please help me to resolve this.
<DataTemplate x:Key="SelectionBoxTemplate"> <TextBlock Text="{Binding UserCtrlSelectedValue, RelativeSource={RelativeSource AncestorType=local:ComboBoxEditor}}" Loaded="ControlCombo_Loaded"/> </DataTemplate><Grid> <telerik:RadComboBox Name="ControlCombo" ItemsSource="{Binding ItemsSource, RelativeSource={RelativeSource AncestorType=local:ComboBoxEditor}}" ItemTemplateSelector="{StaticResource dataTemplateSelector}" SelectionBoxTemplate="{StaticResource SelectionBoxTemplate}" /> </Grid>The code above shown is for datatemplate and RadCombobox in UserControl. In DataTemplate I am binding the Text Property of textblock with one of the dependencyProperty on the usercontrol and the datacontext of combobox is not the usercontrol another viewmodel.
I have tried the code in this post also.
Regards,
Nagasree.
Hi everyone , I'm novice using Telerik so I wanted to ask what Telerik Controls (for WPF purposes) do I need to use to export database (MYSQL) information (or simple text) to Excel format and what Exactly do I need to use or do in order PRE format the excel cells? For example , how to make my exported excel files have a pre defined background color , foreground color , alternate cell background colors , fonts , font size , etc
Right now I have zero knowledge in this topic so if you can explain me what to do with detail I'd really grateful :-)

How can I custom the theme of RadSchudeView like the way it is in RadScheduler as this page:
http://www.telerik.com/support/kb/wpf/scheduleview/details/creating-and-applying-a-custom-theme-for-radscheduler-for-wpf
Hello Télérik,
I'm using a RadTreeView, and in my RadOutlookBarItem, when I added a StackPanel or a Grid, my Vertical and Horizontal ScrollBar are disabled. I can't use them, and the bottom of the Tree is going to infinity... (I can't see the last items)
Do you know where come from this problem ?
My code :
<telerik:RadSplitContainer InitialPosition="DockedLeft" x:Name="splitContainerMain"> <telerik:RadPaneGroup x:Name="radPaneArbo"> <telerik:RadDocumentPane PaneHeaderVisibility="Visible" Header="Navigateur" IsEnabled="True" CanFloat="True" CanUserClose="False"> <telerik:RadOutlookBar x:Name="navigationBar"> <telerik:RadOutlookBarItem x:Name="navigationStationVariables" Header="Stations et Variables"> <!--<StackPanel Orientation="Vertical">--> <!--<Grid VerticalAlignment="Top" Height="50px"> <Grid.ColumnDefinitions> <ColumnDefinition Width="*" /> <ColumnDefinition Width="Auto" /> </Grid.ColumnDefinitions> <telerik:RadAutoCompleteBox Name="autocomplete" ItemsSource="{Binding Stations}" TextSearchPath="Code" SelectionMode="Single" WatermarkContent="Entrée une variable de test.." DropDownItemTemplate="{StaticResource StationsSearchAutoComplete}" BorderBrush="#FF25A0DA" BorderThickness="1" Height="30" SelectionChanged="autocomplete_SelectionChanged" /> </Grid>--> <!--<Grid VerticalAlignment="Top" Height="950px"> <Grid.ColumnDefinitions> <ColumnDefinition Width="Auto" /> </Grid.ColumnDefinitions>--> <telerik:RadTreeView Name="treeViewStationsVariables" ItemTemplateSelector="{StaticResource ArboStationFinalTemplateSelector}" BorderThickness="1" Background="White" PreviewMouseRightButtonUp="treeViewStationsVariables_PreviewMouseRightButtonUp" ScrollViewer.VerticalScrollBarVisibility="Visible" > <telerik:RadTreeView.ContextMenu> <ContextMenu x:Name="treeViewNavigateurVisualisation" Placement="Left"> <ContextMenu.PlacementTarget> <UIElement /> </ContextMenu.PlacementTarget> <MenuItem x:Name="treeViewMenuItemVisualiserAjouterGraphique" Header="Ajouter au Graphique" Click="treeViewMenuItemVisualiserAjouterGraphique_Click"/> <MenuItem x:Name="treeViewMenuItemVisualiserNouveauGraphique" Header="Nouveau Graphique" Click="treeViewMenuItemVisualiserNouveauGraphique_Click"/> </ContextMenu> </telerik:RadTreeView.ContextMenu> <telerik:RadTreeView.Resources> <HierarchicalDataTemplate DataType="{x:Type business:Repertoire}" ItemTemplateSelector="{StaticResource ArboStationFinalTemplateSelector}"> <HierarchicalDataTemplate.ItemsSource> <MultiBinding Converter="{StaticResource RepertoireStationConverter}"> <Binding Path="Stations" /> <Binding Path="SousRepertoires" /> </MultiBinding> </HierarchicalDataTemplate.ItemsSource> <StackPanel Orientation="Horizontal"> <Image Source="/SIGT.EVEm.Client;component/Images/Navigateur/folder.png" Width="20" Height="20" /> <TextBlock Text="{Binding Path=Code}"/> </StackPanel> </HierarchicalDataTemplate> <HierarchicalDataTemplate DataType="{x:Type business:Station}" ItemsSource="{Binding Variables}" ItemTemplateSelector="{StaticResource ArboVariableTemplateSelector}"> <TextBlock Text="{Binding Code}"/> </HierarchicalDataTemplate> </telerik:RadTreeView.Resources> </telerik:RadTreeView> <!--</Grid>--> <!--</StackPanel>--> </telerik:RadOutlookBarItem> </telerik:RadOutlookBar> </telerik:RadDocumentPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer>
Hi,
I want to make a custom theme like the green theme with a dark and a light color variation but with different colors. For example RedTheme or BlueTheme.
What is the best way to achieve this?
Thanks