Curiously; after the last update thad i did, the icon that I configured in the contentImage isn't shown. It has relation with the update or maybe I am configuring something in an erroneous way.
Thank you so much
My code:
Telerik.WinControls.UI.RadDesktopAlert deskp = new Telerik.WinControls.UI.RadDesktopAlert();
deskp.ContentImage = Properties.Resources.alert_danger;
deskp.ThemeName = "TelerikMetroBlue";
deskp.AutoCloseDelay = 6;
deskp.Opacity = (float)1.0;
deskp.PopupAnimationFrames = 20;
deskp.PopupAnimationDirection = (Telerik.WinControls.UI.RadDirection)Enum.Parse(typeof(Telerik.WinControls.UI.RadDirection), "Up");
deskp.FadeAnimationFrames = 20;
deskp.ShowPinButton = false;
deskp.ShowOptionsButton = false;
deskp.CaptionText = "<html><b><span style=\"font-size:14;color:#44224D;\">" + title + "</span></b></html>";
deskp.FixedSize = new System.Drawing.Size(450, 120);
deskp.ContentText = "<html><span style=\"font-size:12;\">" + msg + "</span></html>";
deskp.Show();
Hi Team,
I am trying to set minheight and maxheight for row while using text wrapping in radgridview.
Please let me know any way to handle rowheight.
Thanks,
Amit Kulha

Hi Team,
I am working on behavior for Radgridview and need help on below query:
- How to create grid Data Control behavior(e.g control grid row height)
Thanks,
Amit Kulha

Hi,
I want to be able to redefine the default style of the RadDatePicker to make it look like the rest of our components.
To do so, I put a RadDatePicker in my application, I clicked on it via the 'Document Outline' and chose Edit template -> Edit a copy. I then noticed that the RadDatePicker was now experiencing an issue when I "zoom out" to the "Decade" view : If I click on the left arrow (-10 years) or the right arrow (+10 years), the header text correctly changes (2000 -> 1990 / 2000 -> 2010) but the displayed years in the "calendar" section of the date picker aren't affected by the change. I get the same problems if you zoom out to the "hundred years" view.
Here is the simplest project I could put together to show the issue : https://drive.google.com/open?id=1d_GcDKeUfdmifYbo6KedukOIKtyHSiVo
Here are some screenshots of the problem : https://drive.google.com/open?id=182PK161CCZc_1k4m9rogxl_lSXIF8Lc1
Here are the repro steps :
1. Create a new project
2. Add 2 RadDatePicker
3. Select one of the two RadDatePicker, Edit template -> Edit a copy
4. Notice described issue
I hope this is enough for you to help me with this issue, I guess it must be something missing in the copied style that breaks this mecanism.
Thank you for your time :)
Louis
Hi,
I'm trying to to accomplish the following: whenever a user right clicks whatever data grid, the same context menu should appear. One of the options in the context menu is the export to Excel. I'm trying to achieve this by creating a style for the RadGridView. Here's my xaml:
<Style x:Key="TelerikGridViewContextMenuStyle" TargetType="{x:Type telerik:RadGridView}"> <Setter Property="ContextMenu"> <Setter.Value> <ContextMenu> <MenuItem Header="{bx:LocalizeBinding ExportToExcel, Global=True}" Command="{Binding ExportToExcelCmd}" CommandParameter="{Binding RelativeSource={RelativeSource Mode=FindAncestor, AncestorType={x:Type telerik:RadGridView}}}"> <MenuItem.Icon> <Image Source="/Resources/Icons/Excel.png" /> </MenuItem.Icon> </MenuItem> </ContextMenu> </Setter.Value> </Setter></Style>As you can see, I'm trying to pass the RadGridView as a parameter to the command. However, in my code, this parameter is always null. How come ?
I am trying to use Crosshair behavior on inverse axis on the right (see attached png), horizontal axis is on top.
But the result is that both crosshair labels is not rendered properly.
is there any trick on this?
It is good when i use axis at default locations

By the document, we can bind the pager as below.
<Grid x:Name="LayoutRoot" Background="White"> <Grid.RowDefinitions> <RowDefinition /> <RowDefinition Height="Auto" /> </Grid.RowDefinitions> <telerik:RadGridView x:Name="radGridView" ItemsSource="{Binding Employees}" AutoGenerateColumns="False"> <telerik:RadGridView.Columns> <telerik:GridViewDataColumn DataMemberBinding="{Binding Name}" /> <telerik:GridViewDataColumn DataMemberBinding="{Binding CompanyName}" /> <telerik:GridViewDataColumn DataMemberBinding="{Binding Title}" /> </telerik:RadGridView.Columns> </telerik:RadGridView> <telerik:RadDataPager x:Name="radDataPager" Source="{Binding Items, ElementName=radGridView}" PageSize="5" />The question is that I can't assign the element name of the RadGridView. So how to bind the element?
Thanks.