Telerik Forums
UI for WPF Forum
1 answer
87 views

Hi,

 

I have code in this format:

                LocalDataSourceProvider1.RowGroupDescriptions.Add(GetGroupDescription("ABC"));
                LocalDataSourceProvider1.RowGroupDescriptions.Add(GetGroupDescription("DEF"));
                LocalDataSourceProvider1.RowGroupDescriptions.Add(GetGroupDescription("XYZ"));

Now I have to add a Row, which is invisible to the user (I have to send that as an argument to a converter later).

 

 

Thanks in advance,

Srinivas M.

 

Kalin
Telerik team
 answered on 29 Mar 2016
9 answers
240 views

Good morning Telerik,

I am looking for advice on how to accomplish something.

I am working on an app that will allow separated parents to easily plot out who has their children and when.  I am wanting to use Telerik's controls to visually display display something that looks like a combination between a Gannt view and a calendar.  Do you have any suggestions on how I might go about that?

The Mockup shows something kind of like what I'd like to accomplish.

Yana
Telerik team
 answered on 29 Mar 2016
6 answers
167 views

Hi,

 

I'm currently evaluating the RadFluidContentControl for our application, but have run into two issues. Basically, I just want to switch between the states as soon as the LargeContent is too large for the rendered area. The documentation says this is done automatically ("Alternatively, the control will hide the large content (and show the normal content) as soon as the available size is not enough to properly render the large content."). In my example, this doesn't really work. The normal content is only displayed if the large content is halfway clipped (via resizing the window with the mouse). The second issue is that the content is stretched to the full height of the window, although I would expect to just limit it to its minimum size if I set the Height to "Auto".

 

Here's my code:

 

<telerik:RadFluidContentControl Height="Auto">          
 
            <telerik:RadFluidContentControl.Content>
 
            <StackPanel Orientation="Vertical" Background="DeepSkyBlue">
                <Grid Margin="0,0,0,5">
                    <Grid.ColumnDefinitions>
                        <ColumnDefinition Width="*" />
                        <ColumnDefinition Width="Auto" />
                    </Grid.ColumnDefinitions>
                    <DatePicker/>
                    <TextBlock
                    Grid.Column="1"
                    Margin="9,0"
                    VerticalAlignment="Center"
                    Text="until" />
                </Grid>
                <DatePicker />
            </StackPanel>
 
        </telerik:RadFluidContentControl.Content>
 
            <telerik:RadFluidContentControl.LargeContent>
            <StackPanel Margin="0,0,0,2" Orientation="Horizontal" Background="GreenYellow">
                <DatePicker Margin="3" />
                <TextBlock
                Margin="3"
                VerticalAlignment="Center"
                Text="until" />
                <DatePicker Margin="3" />
            </StackPanel>
        </telerik:RadFluidContentControl.LargeContent>
             
             
</telerik:RadFluidContentControl>

 

What am I doing wrong?

Lennart
Top achievements
Rank 1
 answered on 29 Mar 2016
2 answers
135 views

Hello,

I need to add connection points to a certain connection and i need to do it with a single click and without the 'ctrl' key pressed. I've tried the AddConnectionPoint method but is not giving us the expected behavior  (apparently the points need to be added in some specific order). This is my code:

1.void Connection_MouseDown(object sender, MouseButtonEventArgs e)
2.{
3.     RadDiagramConnection Connection = sender as RadDiagramConnection;
4.
5.     var transformedPoint = this.diagram.GetTransformedPoint(Mouse.GetPosition(this.diagram));
6.
7.     Connection.AddConnectionPoint(e.MouseDevice.GetPosition(this.diagram));         
8.}

I've tried this aswell:

01.void Connection_MouseDown(object sender, MouseButtonEventArgs e)
02.{
03.       RadDiagramConnection Connection = sender as RadDiagramConnection;
04. 
05.       var transformedPoint = this.diagram.GetTransformedPoint(Mouse.GetPosition(this.diagram));
06.       Connection.AddConnectionPoint(e.MouseDevice.GetPosition(this.diagram));
07. 
08.       IList<Point> connPoints = Connection.ConnectionPoints.OrderBy(c => c.X).OrderBy(c => c.Y).ToList();
09.                 
10.       Connection.ConnectionPoints.Clear();
11.       foreach (Point point in connPoints)
12.       {
13.           Connection.AddConnectionPoint(point);
14.       }   
15.}

When i start to make points with one single click, this happens (Attached image).  

We need to add connection points the same way we do with they ctrl key pressed. But without the 'ctrl' key pressed.

Thank you

 

 

Diego
Top achievements
Rank 1
 answered on 28 Mar 2016
4 answers
136 views

Hi,

I am trying to show a RadColumnSparkline within a TimeBar, but I haven't been able to achieve this.

I want to show some data per day like in the column visualization example, this is some sample code like the one that I am using:

public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
            
            DateTime today = DateTime.Today;
            List<MyCost> data = new List<MyCost>()
            {
                new MyCost() { Cost = 1,  MyDate=today },
                new MyCost() { Cost = 2,  MyDate= today.AddDays(1)},
                new MyCost() { Cost = 3, MyDate=today.AddDays(2) },
                new MyCost() { Cost = 4, MyDate=today.AddDays(3)},
                new MyCost() { Cost = 5, MyDate=today.AddDays(4)},
            };
            this.DataContext = data;
        }
    }
 
    public class MyCost
    {
        public double Cost { get; set; }
        public DateTime MyDate { get; set; }
    }

<telerik:RadColumnSparkline x:Name="PART_SparkbarControl" HorizontalAlignment="Left" VerticalAlignment="Top" Height="48" Width="400"
        telerik:StyleManager.Theme="Office_Blue"
        ItemsSource="{Binding}"
        XValuePath="MyDate"
        YValuePath="Cost" />

Lets say that the first date is 03/17/2016, so I want to show data from 03/17 to 03/21 with the values 1 to 5, I'd expect to see something like the first image but instead I get the bars like in the second image.

The data is not being shown in the desired date.

I am not sure if I am missing some configuration or what I am soing wrong.

 

Amige
Top achievements
Rank 1
Veteran
 answered on 28 Mar 2016
6 answers
125 views

We have a RadMap that uses the Bing provider.  We want to allow our users to be able to toggle the map background on and off.  How can we do this?
We have a toggle button for that, here is the (non-working) code:

private void ToggleMapBtn_Click(object sender, System.Windows.RoutedEventArgs e)
{
    this.CustomerMap.Providers.Clear();
    if (this.ToggleMapBtn.IsChecked == true)
    {
        this.CustomerMap.Provider = this.bingProvider;
    }
    else
    {
        this.CustomerMap.Provider = this.emptyProvider;
    }
    this.CustomerDataLayer.Refresh();
}
Thank You.
Petar Mladenov
Telerik team
 answered on 28 Mar 2016
1 answer
453 views
I have some RadGridViews in a Grid with some other controls,once I add enough rows in the GrdSupplyAirAnalysis data grid the last row(s) start to cut off.  If I have 125 rows or more several rows are completely cut off.  The scrollbar has no effect, it doesn't think that it is necessary as it is disabled with set to visible.

 

How can I configure this so that the full contents are viewable, whether by having the parent grid's cell expand to accommodate it or have the scroll bar actually be scrollable?

 

Any help here would be greatly appreciated!

 

Thanks!

 

<controls:ReportTabBase x:Class="AtcReportManager.Controls.Cleanrooms.CleanroomRoomView"
        xmlns:local="clr-namespace:AtcReportManager.Controls.Reports"
        xmlns:cr="clr-namespace:AtcReportManager.Controls.Cleanrooms"
        xmlns:rc="clr-namespace:AtcReportManager.Controls.ReportComponents"
        xmlns:converters="clr-namespace:AtcReportManager.Converters"                        
        xmlns:fh="clr-namespace:AtcReportManager.Controls.FumeHoodComponents"
        xmlns:controls="clr-namespace:AtcReportManager.Controls"
        mc:Ignorable="d" d:DesignHeight="600" d:DesignWidth="1400"
        Height="auto" Width="auto" Header="{Binding RoomName}">
    <controls:ReportTabBase.Resources>
        <Thickness x:Key="LabelMargin">5,0,0,0</Thickness>
    </controls:ReportTabBase.Resources>
    <ScrollViewer HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto">
        <Grid>
            <Grid.RowDefinitions>
                <RowDefinition Height="auto" />
                <RowDefinition Height="auto" />
                <RowDefinition Height="auto" />
                <RowDefinition Height="auto" />
                <RowDefinition Height="auto" />
                <RowDefinition Height="auto" />
            </Grid.RowDefinitions>
            <Grid.ColumnDefinitions>
                <ColumnDefinition Width="auto"/>
                <ColumnDefinition Width="auto"/>
                <ColumnDefinition Width="auto"/>
                <ColumnDefinition Width="auto"/>
                <ColumnDefinition Width="auto"/>
                <ColumnDefinition Width="auto"/>
            </Grid.ColumnDefinitions>
            <controls:ReportLabelTextBlock Grid.Row="0" Grid.Column="0" Text="Room Name" Margin="{StaticResource LabelMargin}" HorizontalAlignment="Left" VerticalAlignment="Center"/>
            <TextBox Grid.Row="0" Grid.Column="1" Text="{Binding RoomName}" HorizontalAlignment="Stretch" VerticalAlignment="Center" HorizontalContentAlignment="Stretch"/>
            <controls:ReportLabelTextBlock Grid.Row="0" Grid.Column="2" Text="Room Area (ft2)" Margin="{StaticResource LabelMargin}" HorizontalAlignment="Left" VerticalAlignment="Center"/>
            <TextBox Grid.Row="0" Grid.Column="3"  HorizontalAlignment="Stretch" VerticalAlignment="Center" HorizontalContentAlignment="Center" MinWidth="30" Margin="{StaticResource StdRptMargin}">
                <TextBox.Text>
                    <Binding Path="RoomAreaSqFt">
                        <Binding.Converter>
                            <converters:DoubleToDisplayConverter NumDecimals="2"/>
                        </Binding.Converter>
                    </Binding>
                </TextBox.Text>
            </TextBox>
            <controls:ReportLabelTextBlock Grid.Row="0" Grid.Column="4" Text="Room Volume (ft3)" Margin="{StaticResource LabelMargin}" HorizontalAlignment="Left" VerticalAlignment="Center"/>
            <TextBox Grid.Row="0" Grid.Column="5"  HorizontalAlignment="Stretch" VerticalAlignment="Center" HorizontalContentAlignment="Center" MinWidth="30" Margin="{StaticResource StdRptMargin}">
                <TextBox.Text>
                    <Binding Path="RoomVolumeCubicFeet">
                        <Binding.Converter>
                            <converters:DoubleToDisplayConverter NumDecimals="2"/>
                        </Binding.Converter>
                    </Binding>
                </TextBox.Text>
            </TextBox>
            <controls:ReportLabelTextBlock Grid.Row="1" Grid.Column="0" Text="Pressure Type" Margin="{StaticResource LabelMargin}" HorizontalAlignment="Left" VerticalAlignment="Center"/>
            <telerik:RadComboBox Grid.Row="1" Grid.Column="1" ItemsSource="{Binding AvailablePressureTypes}" SelectedValue="{Binding PressureType}" VerticalAlignment="Center" MinWidth="30"
                      Margin="{StaticResource StdRptMargin}" HorizontalContentAlignment="Center" SelectedValuePath="Key" DisplayMemberPath="Value"/>
            <controls:ReportLabelTextBlock Grid.Row="1" Grid.Column="2" Text="Occupancy Mode" Margin="{StaticResource LabelMargin}" HorizontalAlignment="Left" VerticalAlignment="Center"/>
            <telerik:RadComboBox Grid.Row="1" Grid.Column="3" ItemsSource="{Binding AvailableOccupancyModeTypes}" SelectedValue="{Binding OccupancyMode}" VerticalAlignment="Center" MinWidth="30"
                      Margin="{StaticResource StdRptMargin}" HorizontalContentAlignment="Center" SelectedValuePath="Key" DisplayMemberPath="Value"/>
            <controls:ReportLabelTextBlock Grid.Row="1" Grid.Column="4" Text="ISO Class" Margin="{StaticResource LabelMargin}" HorizontalAlignment="Left" VerticalAlignment="Center"/>
            <telerik:RadComboBox Grid.Row="1" Grid.Column="5" ItemsSource="{Binding AvailableIsoClassTypes}" SelectedValue="{Binding IsoClass}" VerticalAlignment="Center" MinWidth="30"
                      Margin="{StaticResource StdRptMargin}" HorizontalContentAlignment="Center" SelectedValuePath="Key" DisplayMemberPath="Value"/>
            <CheckBox Grid.Row="2" Grid.Column="0" IsChecked="{Binding CertifiedToIso14644}"   Content="ISO 14644-1" HorizontalAlignment="Left" Margin="0" VerticalAlignment="Top"/>
            <CheckBox Grid.Row="2" Grid.Column="1" IsChecked="{Binding CertifiedToCag003}" Content="CAG-003-2006" HorizontalAlignment="Left" Margin="0" VerticalAlignment="Top"/>
            <CheckBox Grid.Row="2" Grid.Column="2" IsChecked="{Binding IncludeLight}"   Content="Include Light" HorizontalAlignment="Left" Margin="0" VerticalAlignment="Top"/>
            <CheckBox Grid.Row="2" Grid.Column="3" IsChecked="{Binding IncludeSound}" Content="Include Sound" HorizontalAlignment="Left" Margin="0" VerticalAlignment="Top"/>
            <controls:ReportLabelTextBlock Grid.Row="3" Grid.Column="0" Text="# PC Locations" Margin="{StaticResource LabelMargin}" HorizontalAlignment="Left" VerticalAlignment="Center"/>
            <TextBox Grid.Row="3" Grid.Column="1"  HorizontalAlignment="Stretch" VerticalAlignment="Center" HorizontalContentAlignment="Center" MinWidth="30" Margin="{StaticResource StdRptMargin}">
                <TextBox.Text>
                    <Binding Path="NumPcCounts">
                        <Binding.Converter>
                            <converters:IntToNAConverter />
                        </Binding.Converter>
                    </Binding>
                </TextBox.Text>
            </TextBox>
 
            <CheckBox Grid.Row="3" Grid.Column="3" IsChecked="{Binding IsPaoChallenge}"   Content="PAO Challenge" HorizontalAlignment="Left" Margin="0" VerticalAlignment="Top" Checked="WhenPaoCheckChanged" />
            <CheckBox Grid.Row="3" Grid.Column="4" IsChecked="{Binding IsPslChallenge}"   Content="PSL Challenge" HorizontalAlignment="Left" Margin="0" VerticalAlignment="Top" Checked="WhenPslCheckChanged"/>
            <CheckBox Grid.Row="3" Grid.Column="5" IsChecked="{Binding DoLeakTest}"   Content="No Challenge" HorizontalAlignment="Left" Margin="0" VerticalAlignment="Top" Checked="WhenDoLeakTestCheckChanged"/>
            <!--<RadioButton Grid.Row="3" Grid.Column="3" GroupName="LeakChallenge" Content="PAO Challenge" IsChecked="{Binding IsPaoChallenge}"/>
            <RadioButton Grid.Row="3" Grid.Column="4" GroupName="LeakChallenge" Content="PSL Challenge" IsChecked="{Binding IsPsLChallenge}"/>
            <RadioButton Grid.Row="3" Grid.Column="5" GroupName="LeakChallenge" Content="No Challenge" IsChecked="{Binding DoLeakTest}"/>-->
 
            <controls:ReportLabelTextBlock Grid.Row="4" Grid.Column="0" Text="Temperature (°F)" Margin="{StaticResource LabelMargin}" HorizontalAlignment="Left" VerticalAlignment="Center"/>
            <TextBox Grid.Row="4" Grid.Column="1"  HorizontalAlignment="Stretch" VerticalAlignment="Center" HorizontalContentAlignment="Center" MinWidth="30" Margin="{StaticResource StdRptMargin}">
                <TextBox.Text>
                    <Binding Path="TemperatureDegreesFahrenheit">
                        <Binding.Converter>
                            <converters:DoubleToDisplayConverter NumDecimals="2"/>
                        </Binding.Converter>
                    </Binding>
                </TextBox.Text>
            </TextBox>
            <controls:ReportLabelTextBlock Grid.Row="4" Grid.Column="2" Text="Relative Humidity (%)" Margin="{StaticResource LabelMargin}" HorizontalAlignment="Left" VerticalAlignment="Center"/>
            <TextBox Grid.Row="4" Grid.Column="3"  HorizontalAlignment="Stretch" VerticalAlignment="Center" HorizontalContentAlignment="Center" MinWidth="30" Margin="{StaticResource StdRptMargin}">
                <TextBox.Text>
                    <Binding Path="RelativeHumidityPct">
                        <Binding.Converter>
                            <converters:DoubleToDisplayConverter NumDecimals="2"/>
                        </Binding.Converter>
                    </Binding>
                </TextBox.Text>
            </TextBox>
 
            <controls:ReportLabelTextBlock Grid.Row="4" Grid.Column="4" Text="# Laskin Nozzles" Margin="{StaticResource LabelMargin}" HorizontalAlignment="Left" VerticalAlignment="Center"/>
            <TextBox Grid.Row="4" Grid.Column="5"  HorizontalAlignment="Stretch" VerticalAlignment="Center" HorizontalContentAlignment="Center" MinWidth="30" Margin="{StaticResource StdRptMargin}">
                <TextBox.Text>
                    <Binding Path="NumLaskinNozzles">
                        <Binding.Converter>
                            <converters:IntToNAConverter />
                        </Binding.Converter>
                    </Binding>
                </TextBox.Text>
            </TextBox>
 
            <Grid Grid.Row="5" Grid.ColumnSpan="10">
                <Grid.RowDefinitions>
                    <RowDefinition Height="auto" />
                    <RowDefinition Height="auto" />
                    <RowDefinition Height="auto" />
                    <RowDefinition Height="*" />
                </Grid.RowDefinitions>
                <Grid.ColumnDefinitions>
                    <ColumnDefinition Width="auto"/>
                    <ColumnDefinition Width="*"/>
                </Grid.ColumnDefinitions>
                <Border Grid.Row="0" Grid.Column="0"  BorderBrush="{DynamicResource StdBorderBrush}" BorderThickness="2 2 2 0"/>
                <Border Grid.Row="1" Grid.Column="0"  BorderBrush="{DynamicResource StdBorderBrush}" BorderThickness="2"/>
                <controls:ReportComponentHeaderTextBlock Grid.Row="0" Grid.Column="0"  Margin="{StaticResource StdRptMargin}"
                   Text="Particle Count Analysis" HorizontalAlignment="Center" VerticalAlignment="Center" />
                <controls:ReportComponentHeaderTextBlock Grid.Row="0" Grid.Column="1"  Margin="{StaticResource StdRptMargin}"
                   Text="Supply Air Analysis" HorizontalAlignment="Center" VerticalAlignment="Center" />
                <telerik:RadGridView x:Name="GrdPcAnalysis" Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="1" HorizontalAlignment="Stretch" Margin="{StaticResource StdRptMargin}"
                                 IsFilteringAllowed="False" AutoGenerateColumns="False" CanUserInsertRows="True" CanUserDeleteRows="True" NewRowPosition="Top"
                                 CanUserFreezeColumns="False" CanUserReorderColumns="False" CanUserSortColumns="False" CanUserSortGroups="False" ShowGroupPanel="False"
                                 AddingNewDataItem="WhenNewPcObjectItemAdded" RowEditEnded="WhenParticleCountRowEditEnded">
                    <telerik:RadGridView.Columns>
                        <telerik:GridViewDataColumn Header="Location" DataMemberBinding="{Binding ParticleCountId}" IsReadOnly="True" HeaderTextAlignment="Center" TextAlignment="Center" />
                        <telerik:GridViewDataColumn Header="µm/ft3 >= 0.5" DataMemberBinding="{Binding PcPoint5CountMicroMeterPerCubicFeet, Converter={converters:DoubleToNAConverter}}" HeaderTextAlignment="Center" TextAlignment="Center"/>
                        <telerik:GridViewDataColumn Header="µm/m3 >= 0.5" DataMemberBinding="{Binding PcPoint5CountMicroMeterPerCubicMeter, Converter={converters:DoubleToIntConverter}}" IsReadOnly="True" HeaderTextAlignment="Center" TextAlignment="Center"/>
                        <telerik:GridViewDataColumn Header="µm/ft3 >= 5.0" DataMemberBinding="{Binding Pc5PointCountMicroMeterPerCubicFeet, Converter={converters:DoubleToNAConverter}}" HeaderTextAlignment="Center" TextAlignment="Center"/>
                        <telerik:GridViewDataColumn Header="µm/m3 >= 5.0" DataMemberBinding="{Binding Pc5PointCountMicroMeterPerCubicMeter, Converter={converters:DoubleToIntConverter}}" IsReadOnly="True" HeaderTextAlignment="Center" TextAlignment="Center"/>
                        <telerik:GridViewDataColumn Header="Light (ft cd)" DataMemberBinding="{Binding LightFtCandles, Converter={converters:DoubleToIntConverter}}" IsVisible="{Binding IncludeLight}"  HeaderTextAlignment="Center" TextAlignment="Center"/>
                        <telerik:GridViewDataColumn Header="Sound dbA" DataMemberBinding="{Binding SounddbA, Converter={converters:DoubleToIntConverter}}" IsVisible="{Binding IncludeSound}" HeaderTextAlignment="Center" TextAlignment="Center"/>
                    </telerik:RadGridView.Columns>
                </telerik:RadGridView>
                <Border Grid.Row="0" Grid.Column="1"  BorderBrush="{DynamicResource StdBorderBrush}" BorderThickness="2 2 2 0"/>
                <Border Grid.Row="1" Grid.Column="1" Grid.RowSpan="2"  BorderBrush="{DynamicResource StdBorderBrush}" BorderThickness="2"/>
                <telerik:RadGridView x:Name="GrdSupplyAirAnalysis" Grid.Row="1" Grid.Column="1" Grid.RowSpan="2" HorizontalAlignment="Stretch" Margin="{StaticResource StdRptMargin}"
                                 IsFilteringAllowed="False" AutoGenerateColumns="False" CanUserInsertRows="True" CanUserDeleteRows="True" NewRowPosition="Top"
                                 CanUserFreezeColumns="False" CanUserReorderColumns="False" CanUserSortColumns="False" CanUserSortGroups="False" ShowGroupPanel="False"
                                 BeginningEdit="GrdSupplyAirAnalysisBeginningEdit" CellEditEnded="GrdSupplyAirAnalysisCellEditEnded"
                                 AddingNewDataItem="WhenNewSupplyFilterDataItemAdded" RowEditEnded="WhenSupplyFilterRowEditEnded"
                                 ScrollViewer.CanContentScroll="True" ScrollViewer.HorizontalScrollBarVisibility="Auto" ScrollViewer.VerticalScrollBarVisibility="Visible">
                    <telerik:RadGridView.Columns>
                        <telerik:GridViewDataColumn Header="Location" DataMemberBinding="{Binding FilterId}" IsReadOnly="True" HeaderTextAlignment="Center" TextAlignment="Center"/>
                        <telerik:GridViewDataColumn Header="V.G. 1" DataMemberBinding="{Binding VelGridReading1, Converter={converters:DoubleToNAConverter}}" HeaderTextAlignment="Center" TextAlignment="Center"/>
                        <telerik:GridViewDataColumn Header="V.G. 2" DataMemberBinding="{Binding VelGridReading2, Converter={converters:DoubleToNAConverter}}" HeaderTextAlignment="Center" TextAlignment="Center"/>
                        <telerik:GridViewDataColumn Header="Filter Area (ft2)" DataMemberBinding="{Binding FilterAreaSqFt, Converter={converters:DoubleToNAConverter}}" HeaderTextAlignment="Center" TextAlignment="Center"/>
                        <telerik:GridViewDataColumn Header="RSD" DataMemberBinding="{Binding RelativeStandardDeviation, Converter={converters:RsdConverter}}" IsReadOnly="True" HeaderTextAlignment="Center" TextAlignment="Center"/>
                        <telerik:GridViewDataColumn Header="CFM" DataMemberBinding="{Binding FilterCfm, Converter={converters:DoubleToIntConverter}}" HeaderTextAlignment="Center" TextAlignment="Center"/>
                        <telerik:GridViewDataColumn Header="Leak Challenge" DataMemberBinding="{Binding PslDisplayString}" IsReadOnly="True" IsVisible="{Binding IsPslChallenge}" HeaderTextAlignment="Center" TextAlignment="Center"/>
                        <telerik:GridViewDataColumn Header="Leak Challenge" DataMemberBinding="{Binding FilterLeakChallengeMicroGramsPerLiter, Converter={converters:LeakChallengeConverter}}" IsReadOnly="True" IsVisible="{Binding IsPaoChallenge}" HeaderTextAlignment="Center" TextAlignment="Center"/>
                        <telerik:GridViewDataColumn Header="% Leak Detected" DataMemberBinding="{Binding SigLeakDetectedPct, Converter={converters:DoubleToNAConverter}}" IsVisible="{Binding ShowLeakTestResult}" HeaderTextAlignment="Center" TextAlignment="Center"/>
                    </telerik:RadGridView.Columns>
                </telerik:RadGridView>
                <cr:RoomRemarksView x:Name="RemarksView"  Grid.Row="2" Grid.Column="0" Margin="{StaticResource StdRptMargin}"/>
                <telerik:RadExpander Header="Validation" Grid.Row="3" IsExpanded="{Binding IsValidationSectionExpanded}"
                             Grid.ColumnSpan="20" telerik:AnimationManager.IsAnimationEnabled="True" Visibility="Visible">
                    <Grid>
                        <Grid.RowDefinitions>
                            <RowDefinition Height="Auto"/>
                        </Grid.RowDefinitions>
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="Auto"/>
                        </Grid.ColumnDefinitions>
                        <telerik:RadGridView x:Name="GrdValidation" Grid.Row="1" Grid.Column="0" Grid.ColumnSpan="5" HorizontalAlignment="Stretch" Margin="{StaticResource StdRptMargin}"
                                     IsFilteringAllowed="False" AutoGenerateColumns="False" CanUserInsertRows="False" CanUserDeleteRows="False" NewRowPosition="Top"
                                     CanUserFreezeColumns="False" CanUserReorderColumns="False" CanUserSortColumns="False" CanUserSortGroups="False" ShowGroupPanel="False">
                            <telerik:RadGridView.Columns>
                                <telerik:GridViewDataColumn Header="Component" DataMemberBinding="{Binding Component}"/>
                                <telerik:GridViewDataColumn Header="Element" DataMemberBinding="{Binding ValidationItemName}"/>
                                <telerik:GridViewDataColumn Header="Issue" DataMemberBinding="{Binding ValidationFailureDescription}"/>
                                <telerik:GridViewDataColumn Header="Severity" DataMemberBinding="{Binding ValidationResult}"/>
                            </telerik:RadGridView.Columns>
                        </telerik:RadGridView>
                    </Grid>
                </telerik:RadExpander>
            </Grid>
        </Grid>
    </ScrollViewer>
</controls:ReportTabBase>

Dilyan Traykov
Telerik team
 answered on 28 Mar 2016
1 answer
76 views
Hi, I'm using the default OpenDocumentCommand to open a file, I was wondering is there a way to get that file name and save it to a public variable? 
Tanya
Telerik team
 answered on 28 Mar 2016
1 answer
123 views
i want add RangeBarSeries in CategoricalSeriesDescriptor.

This is possible?

Dinko | Tech Support Engineer
Telerik team
 answered on 28 Mar 2016
1 answer
226 views

Hi

Could anyone give me a WPF example of using the RadWizardCommands? I have defined the wizard in XAML and would like to receive the commands (MoveCurrentToNext, Finish, etc.) in the view model.

Thank you.

Adrian

Stefan
Telerik team
 answered on 28 Mar 2016
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?