The new dialogs look really sweet. I wonder if you can control the source for the two navigation panes?
I run an application written with RadWPF on Citrix at a datacentre and we secure the folder structure with active directory but the standard MS dialogs show the full folder structure (all the users filesystem) of the Xen server then you get an access denied message when you try to browse directories you don't have access to. If there was scope to control what the is loaded as the source for the navigation it would make my software look better as the standard active directory denied loop always felt very clunky.
Cheers,
Hi,
When you copy to the clipboard some text of a PDF, the component copies to the clipboard the text as plain text (it does not preserve the font, size, italics, underlines, etc. )
Is there any option to activate this, or any possible workaround ?
Thank you,
I use the GridViewDataColumn.Footer to display some overall information.
With this code:
<telerik:GridViewDataColumn.Footer>
<TextBlock Text="{Binding RelativeSource={RelativeSource AncestorType=local:BaseModuleDetail, Mode=FindAncestor}, Path=DataContext.DataSum.Sum}" />
</telerik:GridViewDataColumn.Footer>
It works flawlessly. While our GridView has over 20 columns the user has to scroll to see through the whole content.
Only the Footer content of the firstly visible columns are rendered perfectly. After scrolling horizontally, the other footers content is empty.
The other column's footer row binding is correct and has valid data. (If I set the first 5 columns invisible, the next 5 columns, now visible within the viewport, are going to be rendered perfectly). Therefore, I have to assume this is a bug within the framework.
Telerik version: 2015.3.1104.45
I'm trying to find a way to render all text in a RadRichTextBox in a single font size, ignoring the document style(s).
Does anybody know of a place to start?
Thanks
Hi
I have a RadTreeListView with a custom column that is a RadLinearSparkLine, as follow
<telerik:RadTreeListView .......>
<telerik:GridViewDataColumn DataMemberBinding={Binding field1}....>
<telerik:GridViewDataColumn DataMemberBinding={Binding field2} ....>
<telerik:GridViewDataColumn DataMemberBinding={Binding field3} ....>
<telerik:GridViewDataColumn.CellTemplate>
<Datatemplate>
<telerik:RadLinearSparkLine ItemsSource={Binding DiccionaryWithTheValues} ....... />
</Datatemplate>
.....
.....
This works fine. It shows a grid with data and a graphic column based in the values from the "DiccionaryWithValues"
This grid needs to be exported to Excel. We use the Export method of the object RadTreeListView, but it doesn´t export correctly the RadLinear column. Instead of the chart, it exports a text wich represent a data type.
It is posible to export the chart with the Export method in anyway?????
Thanks
I have RadToggleButton's in my application and they are not following the style set in the mainview.
StyleManager.ApplicationTheme = new Office2016Theme();
Only when i explicetly set the theme like this, the theme is applied
<telerik:RadToggleButton telerik:StyleManager.Theme="Office2016" Margin="5,0,0,0" Width="35" Height="25" ToolTip="Enable Translation Mode" Visibility="{Binding TranslationModeVisible}" IsChecked="{Binding TranslationModeActive}">
<Grid>
<Image Width="25" Height="20" Source="/CSD.Global.Infrastructure;component/Images/report.png" Margin="0,-3,0,0"/>
</Grid>
</telerik:RadToggleButton>
I'm trying (and failing) to set up a RadCartesianChart with a StepLineSeries where one axis is a DateTime, integrated with a RadTimeBar, as was outlined here: http://www.telerik.com/forums/synchronizing-chartview-and-timebar, except having the data for the StepLineSeries & RadTimeBar bound to a view model.
Is there any way I could get a sample with a RadCartesianChart and RadTimeBar using MVVM?
Thanks!