Hi All,
I am using "telerik:RadDocking" in my wpf application. I want to create a layout as follows - X1 is section 1, X2 is section 2 and X3 is section 3. (---- and | are section dividers)
X1 | X3
---- | X3
X2 | X3
X1 - using "telerik:RadSplitContainer" for defining section 1 and it contains non-editable data.
X2 - using "telerik:RadDocking.DocumentHost" for defining section 2 and it using for multiple "RadPane".
X3 - using "telerik:RadSplitContainer" for defining section 1 and it contains non-editable data. It is single section with same height of X1+X2
Issue:
Section X3 has fixed width. if I try to reduce the width for X1, X2 then I can increase the width of the X3 control. but the problem here is after the realignment I am unable to resize the section X1 and X2 and also X3 will overlap to other two section.
If I resize the window then control is not aligning, based on the window size I need to set some width for each section and these each section should support resizing also.
Please help me to fix this issue. Please let me know if you need more information.
I appreciate your support in advance.
Thanks
Selvakumar R
Hello,
When we make Rad control IsReadOnly=True or disbaled the control, the value inside is not looking good. It masks the value.
How can we remove the mask or make more transparent to make the value visible more bright ?
I am using Expression Dark Theme
Please guide me
Hi Team,
I would like to customize the Rad Carousel View - Like Together Deck Of Cards. Could you please give me the exact solution for this. Currently i used RadCarousal to display contents.
For more, Please go through the attached file..
I was planning to use the RadRibbonGallery to lighten my already filled ribbon. I wanted to put my RadDropDownButtons inside of the Gallery, thus only showing by default only a few of them (the most important/common) and allowing the user to expand/scroll the Gallery to show the rest.
But in this scenario, having selection for items in the gallery makes no sense. Is there an easy way to 'deactivate' this functionality for the RadRibbonGallery?
I create class for style selector as follows:
public class NegativeNumberStyle : StyleSelector {
public override Style SelectStyle(object item, DependencyObject container) {
GridViewCell cell = container as GridViewCell;
var value = item.GetType().GetProperty(cell.Column.UniqueName).GetValue(item, null);
if (value.GetType() == typeof(int) && ((int)value) < 0) return NegativeStyle;
if (value.GetType() == typeof(decimal) && ((decimal)value) < 0) return NegativeStyle;
return null;
}
public Style NegativeStyle { get; set; }
}
Then I add the resources to the grid on my page as follows:
<Grid.Resources>
<my:NegativeNumberStyle x:Key="negativeNumberStyle">
<my:NegativeNumberStyle.NegativeStyle>
<Style TargetType="telerik:GridViewCell" BasedOn="StaticResource GridViewCellStyle}">
<Setter Property="Background" Value="Red"/>
</Style>
</my:NegativeNumberStyle.NegativeStyle>
</my:NegativeNumberStyle>
</Grid.Recources>
Since I load columns dynamically I set Columns CellStyle property in code behind
GridViewDataColumn gridColumn = new GridViewDataColumn();
gridColumn.CellStyleSelector = new NegativeNumberStyle();
But negative numbers aren't use the proper style (not showing in red color). I debug the code and noticed that NegativeProperty always returns null.
What am I doing wrong?
Thanks
Hi,
We are trying to expand RadComboBox using CUIT and UIAutomation. Both are throwing exceptions. The exception name is ElementNotAvailableException. In CUIT the inner exception name is InvalidOperationException. Is there any way to perform expand operation on RadComboBox without getting exceptions?.Any help to solve this problem is greatly appreciated.
Regards,
Nagasree.
Hello:
We are unable to
vary the height of the bar series even though the below property is given
properly. The bar series height and width gets adjusted by itself.
The
objective is the height of the Chart should remain same as well as the bar
inside of it. When only one bar for example, the width of the bar should not auto adjust to be fat.
<telerik:RadCartesianChart Palette="Windows8"
Grid.Row="1"
Grid.Column="0"
Grid.ColumnSpan="2"
Margin="0,0,0,-205">
<telerik:RadCartesianChart.HorizontalAxis>
<telerik:LinearAxis Title="Days" />
</telerik:RadCartesianChart.HorizontalAxis>
<telerik:RadCartesianChart.VerticalAxis>
<telerik:CategoricalAxis />
</telerik:RadCartesianChart.VerticalAxis>
<telerik:RadCartesianChart.Series>
<telerik:BarSeries PaletteMode="DataPoint"
ShowLabels="True"
ItemsSource="{Binding LstRunningBatch}"
CategoryBinding="BatchId"
MinWidth="10"
Width="15"
MaxWidth="20"
MinHeight="10"
Height="150"
MaxHeight="20"
ValueBinding="TotalDays">
</telerik:BarSeries>
</telerik:RadCartesianChart.Series>
</telerik:RadCartesianChart>