Telerik Forums
UI for WPF Forum
5 answers
134 views
Hi
Is there is a way to get the  value represented by PropertyGridField.

Thanks,
Akram
Akram
Top achievements
Rank 1
 answered on 14 Dec 2012
7 answers
241 views
Does the Rad Dock keep a history of the order in which the tabs become active? If I open "Tab1", then Open "Tab2", then open "Tab3", if I then close "Tab 3" I would expect "Tab 2" to become the active tab or the tab closest to the position of the tab that was closed. Instead, when ever I close any tab the first tab in the control always becomes the active tab.

Another useful feature would be the ability to drag the tabs around to re-order the tabs like you can in Visual Studio 2010.
Scott
Top achievements
Rank 1
 answered on 14 Dec 2012
1 answer
86 views
I've just recently updated to the latest release and setting IsTodayHighlighted to False isn't working as expected. I've also tested the latest internal build for Q3 2012 with the same result. Any help would be appreciated.
Alek
Telerik team
 answered on 14 Dec 2012
1 answer
356 views
In the release notes for Q3 2012 (version 2012.3.1017), for ListBox I see:
"Implemented AutoScrolling in ListBox. Added SmoothScrolling virtualized panel. "

How can I turn on smoothscrolling and autoscrolling?
Alek
Telerik team
 answered on 14 Dec 2012
1 answer
84 views
I set the theme explicitly from a copy of your theme file:

<ResourceDictionary.MergedDictionaries>
  <ResourceDictionary Source="../Themes/Telerik.Windows.Controls.Navigation.xaml"/>
</ResourceDictionary.MergedDictionaries>

I have this menu item:
<telerik:RadMenuItem x:Name="mainMenuFileExit" Header="E_xit" Command="{StaticResource Commands.ExitApplication}"  />

When I set the theme to Windows 7 it works as expected:
Telerik\RadControls for WPF Q3 2012\Themes.Implicit\WPF40\Windows7\Themes\Telerik.Windows.Controls.Navigation.xaml

However, if I choose another theme the access key is interpreted as part of the header text:
Telerik\RadControls for WPF Q3 2012\Themes.Implicit\WPF40\ExpressionDark\Themes\Telerik.Windows.Controls.Navigation.xaml

Clearly, something is wrong with your non-Windows7 themes.
Masha
Telerik team
 answered on 14 Dec 2012
1 answer
357 views
I wish for my edit window (RentalTicket) to only open when I double click on a valid row.  I want nothing to happen if the headers are double clicked, or if the scrollbar is double clicked.
Also, when I click on blank space in my RadGridView, the selected row is still selected.  I think that the selected row should de-select if I click on a non row in the RadView Grid.

My RadGridView:
</telerik:RadGridView>
        <telerik:RadGridView AutoGenerateColumns="False" Margin="12,0,12,12" Name="radGridViewNeedsShipping" SelectionMode="Extended" ShowGroupPanel="False" Height="190" VerticalAlignment="Bottom" MouseDoubleClick="rgvOpenTicket" >
            <telerik:RadGridView.Columns>
                <telerik:GridViewDataColumn Header="PO Number" IsReadOnly="True" UniqueName="SerialNumber" CellStyleSelector="{StaticResource transactionStyleSelector}"/>
                <telerik:GridViewDataColumn Header="Customer" IsReadOnly="True" UniqueName="Customer.EntityName" />
                <telerik:GridViewDataColumn Header="Ship By Date" IsReadOnly="True" UniqueName="TransactionDate" DataFormatString="{}{0:MM/dd/yyyy}"/>
                <telerik:GridViewDataColumn Header="Type" IsReadOnly="True" DataMemberBinding="{Binding Path=TransactionTypeId, Converter={StaticResource transactionTypeConverter}}" />
            </telerik:RadGridView.Columns>
        </telerik:RadGridView>

and this is my doubleClicked function:
private void rgvOpenTicket(object sender, MouseButtonEventArgs e)       
        {
            RentalTicket rt = new RentalTicket(((Transaction)((Telerik.Windows.Controls.RadGridView)sender).SelectedItem));
            rt.Closing += new System.ComponentModel.CancelEventHandler(dispatcherTimer_Tick);
            rt.Show();
        }
Nick
Telerik team
 answered on 14 Dec 2012
2 answers
200 views
Hi,

What would be the recommended approach for printing and print previewing the grid control ?
 Thanks,
Dani
Dimitrina
Telerik team
 answered on 14 Dec 2012
1 answer
252 views
I'm using CategoricalAxis to create a nice histogram plot. How can I hide the ticks on the horizontal axis?
I read about a MajorTicksVisibility property, but IntelliSense never shows it so I suspect it's not there...

<chart:RadCartesianChart x:Name="RadCartesianChart" Palette="Arctic" Margin="10">
        <chart:RadCartesianChart.DataContext>
            <viewModels:HistogramViewModel />
        </chart:RadCartesianChart.DataContext>
        <chartView:BarSeries ItemsSource="{Binding Data}" ValueBinding="Value"
                            ShowLabels="False" FontFamily="Segoe UI" FontSize="10">
        </chartView:BarSeries>
        <chart:RadCartesianChart.HorizontalAxis>
            <chartView:CategoricalAxis  GapLength="0" ShowLabels="False" FontFamily="Segoe UI" FontSize="12" />
        </chart:RadCartesianChart.HorizontalAxis>

        <chart:RadCartesianChart.VerticalAxis>
            <chartView:LinearAxis FontFamily="Segoe UI" FontSize="12"
                            Title="Histogram"
                            Minimum="0" Maximum="{Binding AxisMaxValue}"
                            ShowLabels="True" />
        </chart:RadCartesianChart.VerticalAxis>
        <chart:RadCartesianChart.Grid>
            <chartView:CartesianChartGrid MajorLinesVisibility="Y" />
        </chart:RadCartesianChart.Grid>
    </chart:RadCartesianChart>
Petar Marchev
Telerik team
 answered on 14 Dec 2012
2 answers
101 views
With a recent update to Q3 2012, all of our RadListBox started to show the content with FontWeight="Bold", which was not the case with previous versions. As a result, many of our screens became plain ugly.

Was it a deliberate decision to make this theme change or is it a bug?

Even more, if the data template of a RadListBoxItem has a TextBlock with FontWeight set explicitly, it is ignored and the Bold style is used. 

Code example:
<telerik:RadListBox ItemsSource="{Binding TestItems}">
    <telerik:RadListBox.ItemTemplate>
        <DataTemplate>
            <TextBlock Text="{Binding }"
                       FontWeight="Normal"
                       FontSize="18" />
        </DataTemplate>
    </telerik:RadListBox.ItemTemplate>
</telerik:RadListBox>

For this template, items are still shown with Bold.

I've checked and this behavior is specific for Windows8 & Metro themes, Windows7 still displaying items correctly.

Any workarounds to get our screens back to normal and looking good?

Thanks
Masha
Telerik team
 answered on 14 Dec 2012
0 answers
55 views
Sorry, I miss typed the title.
David
Top achievements
Rank 1
 asked on 14 Dec 2012
Narrow your results
Selected tags
Tags
+? more
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Jay
Top achievements
Rank 3
Iron
Iron
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
Radek
Top achievements
Rank 2
Iron
Iron
Iron
Bohdan
Top achievements
Rank 2
Iron
Iron
Richard
Top achievements
Rank 4
Bronze
Bronze
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?