Hi All
By any chance that I could add a new custom color in to standard color palette please ?
I am using RadColorPicker
Thanks in advanceIn our product we have some buttons in the RadTabControl.AdditionalContent.
These buttons can not be found by UI automation tool, also checking with Inspect.Objects these button and the AdditionalContent are not found.
Is this supported by Telerik or do we do something wrong.
We are running on Windows 7, using telerik WPF version Wpf.40.2014.2.0729.
Snapshot of the code:
<telerik:RadTabControl.AdditionalContent >
<StackPanel Grid.Row="2" Margin="10,2" Orientation="Horizontal" HorizontalAlignment="Right">
<!-- Help -->
<Button Name="btnHelp"
HorizontalAlignment="Right"
VerticalAlignment="Top"
Margin="0,0,10,0"
Command="{Binding Path=ShowHelpCommand}"
Style="{StaticResource HelpButtonStyle}"
Visibility="{Binding HelpButtonVisibility}"
ToolTip="{Binding Source={x:Static frameworkResources:XmlTextProvider.Content},XPath=Help/@Header}" />
<!-- Logout -->
<Button Name="btnLogout"
HorizontalAlignment="Right"
VerticalAlignment="Top"
Margin="0,0,0,0"
Command="{Binding Path=LogoutCommand}"
Style="{StaticResource LogOutButtonStyle}"
ToolTip="{Binding Source={x:Static frameworkResources:XmlTextProvider.Content},XPath=Logout/@Header}" />
</StackPanel>
</telerik:RadTabControl.AdditionalContent>

Hi, i'm trying to make application similar to ms.visio. I'm using RadDocking and make two RadPaneGroup in leftside and rightside. the leftside is for the list of drag&drop elements like shape,image or anything. the rightside is for the layout and i can save the layout.
the leftside is like an icon with text and when we drag it, it will show the original image/shape.
what is the best way to do that? is using RadDocking good enough? any specific controls or feature that can be used?
Thanks,
Mirza
Hi,
why can't i use RadDiagramToolbox? RadDiagram is fine, but everytime i use RadDiagramToolbox, there is an error message 'System.Windows.Media.Animation.DoubleAnimation' animation object cannot be used to animate property 'RenderTransform' because it is of incompatible type 'System.Windows.Media.Transform'.
i'm using VS2010 and free trial Telerik
Regards,
Mirza

Hi,
I want to generate TreeListView Columns dynamically and populate them with data.
Regards
I am using the Visual Studio 2013 Dark Theme (using Implicit styles) and for the most part everything looks great out of the box. One issue that I have run across is that the Context Menu that shows up for a TextBox (Cut, Copy, Paste) is not themed at all. Additionally, using the RadRibbonWindow, when clicking on the Icon, the Context Menu that shows up (Restore, Move, Size, Minimize, Maximize, Close) is not themed at all. I have to think that I am missing a setting somewhere for these to be themed but I cannot find it anywhere.
Can you help me out?
Jon
Hi,
When the value in a cell containing a formula gets updated the text alignment is incorrect. See cell D2 in attachment after I put a 1 in cell B2. There is plenty of room for the value to be displayed correctly. The formula in D2 is =B2*C2.
I have tested this on the Telerik demos and can get the same thing to happen on there so it has nothing to do with my code.
This makes this control very unusable and I have customers complaining about this.
Thanks
Anthony

Hello everyone,
We created a Custom Control which has a GridView as a part of it. We use the AutoGeneratingColumns functionality and the DisplayAttribute to define the header text. That works perfect. We want to set the Columns to a fixed width, and it would be great to do this with an Attribute or some sort of other way.
Does anyone have a suggestion? We don't want to change the fact that the columns are auto generated.
Thanks for any help...

I need to add values to the dropdown list of Duration so that they are 10 seconds, 20 seconds, 45 seconds, etc. So I am able to add them okay to the list:
var durationPicker = sender as DurationPicker;
durationPicker.Items.Add("5 seconds");
durationPicker.Items.Add("10 seconds");
durationPicker.Items.Add("0.5 minutes");
durationPicker.Items.Add("2 minutes");
durationPicker.Items.Add("7 minutes");
However, picking any seconds doesn't update the End Time like if I picked 2 minutes. It seems to ignore anything that is seconds. Could you show me how to make seconds increments work on the Duration so it effects the End Date? We often schedule items every 60 seconds. Or 30.