Telerik Forums
UI for WPF Forum
2 answers
105 views
Hi,

I'm trying to localise the telerik controls used within my application, however I can't seem to locate the list of Keys required for the RadDataPager controls. I appreciate there isn't much to localise on the DataPager apart from "Page" and "of" but it needs doing all the same.

Have I missed some documentation somewhere?

Cheers,

Simon
Simon Williams
Top achievements
Rank 1
 answered on 12 Nov 2010
6 answers
279 views
Hello,

I have a form with one RadTreeView and one Button. The button has IsDefault="true" set. I use the keyboard keys (up/down) to select an item in the treeview. Then I press Enter key and the button command should be executed. However, the RadTreeView handles the KeyDown event before it bubbles up to the form. Is there any way to work around this?
Andrei Rinea
Top achievements
Rank 1
 answered on 12 Nov 2010
3 answers
111 views
Hi

When I first saw the new datafilter control in your demo i liked it. The way, you select fields, operator and values are very nice. But the way you present/organize the bundles of different statements just totally confuses me. Lets take the folowing pseudo filter:

where
  ((UnitPrice <= 100) AND (UnitPrice >= 10)) AND
  ((OrderDate <= 31-12-2008) AND (OrderDate >= 01-12-2008))

The attachment "filtertelerik.jpg" shows the above where clause in the datafilter control. Personally the way indents are handled confuses me and I would never be able to see through more complex filters. So I suggest you could add additional ways og presenting filters and let the user/developer chooses from himself.

I have attached a few suggestions, that I would like:
Rossen Hristov
Telerik team
 answered on 12 Nov 2010
1 answer
119 views
Hello everybody

I'm using RadCarousel component and I want know if there any method
in order to get the items position inside radCarousel (x and y).

I need to retrieve this data when the selected item inside the component has change!

Thank you!
Maya
Telerik team
 answered on 12 Nov 2010
1 answer
227 views
I want to show data using RadChart which is dynamic and has multiple line series. And also each series has  its own style depending on its value (in my app, I want to show nornal and dash lines in chart area). But I have the problem that in chart area, it can set only one style lineseries(normal or dash) but I want to show both. So anyone can suggest me how to do this.

Thank you 
GUI
Evgenia
Telerik team
 answered on 12 Nov 2010
1 answer
70 views
Hello Telerik,

I have a gridview populating data in TIleViewItem.
The Header text changes dynamically.

Is it possible to filter gridviewdata using the TIleview Header

Regards,
Rick
Milan
Telerik team
 answered on 12 Nov 2010
7 answers
561 views
What is the trick for binding Errors to the tooltips of GridViewDataColumns and GridViewComboboxColumns?

This is what I have and it only displays the default red line.

  <UserControl.Resources> 
        <Style TargetType="{x:Type telerik:GridViewColumn}">  
            <Style.Triggers> 
                <Trigger Property="Validation.HasError" Value="true">  
                    <Setter Property="ToolTip" 
                        Value="{Binding RelativeSource={RelativeSource Self}, Path=(Validation.Errors)[0].ErrorContent}"/>  
                </Trigger> 
            </Style.Triggers> 
        </Style> 
    </UserControl.Resources> 

 <telerik:RadGridView Name="wellsRadGridView" AutoGenerateColumns="False" ItemsSource="{Binding GetWells}" 
                             AddingNewDataItem="radGridView_AddingNewDataItem">  
            <telerik:RadGridView.Columns> 
                <telerik:GridViewDataColumn Header="WellID" DataMemberBinding="{Binding ID, ValidatesOnDataErrors=True, UpdateSourceTrigger=LostFocus}"/>  
                <telerik:GridViewDataColumn Header="X Coordinate" DataMemberBinding="{Binding XCoordinates}"  /> 
                <telerik:GridViewDataColumn Header="Y Coordinate" DataMemberBinding="{Binding YCoordinates}"  /> 
                <telerik:GridViewDataColumn Header="Top of Screen Elevation" DataMemberBinding="{Binding TopOfScreen, ValidatesOnDataErrors=True}"  /> 
                <telerik:GridViewDataColumn Header="Bottom of Screen Elevation" DataMemberBinding="{Binding BottomOfScreen, ValidatesOnDataErrors=True}"  /> 
                <telerik:GridViewDataColumn Header="Aquifier/Zone" DataMemberBinding="{Binding Zone}"  /> 
                <telerik:GridViewDataColumn Header="Functional Category" DataMemberBinding="{Binding FunctionalCategory}"  /> 
                <telerik:GridViewComboBoxColumn Header="Current Sampling Frequency" 
                                                DisplayMemberPath="Name"   
                                                SelectedValueMemberPath="ID" 
                                                DataMemberBinding="{Binding Frequency}" 
                                                ItemsSource="{Binding FrequencyCategories}"/>  
                <telerik:GridViewComboBoxColumn Header="Risk to Receptors"   
                                                DisplayMemberPath="Name" 
                                                SelectedValueMemberPath="ID" 
                                                DataMemberBinding="{Binding RiskReceptors}" 
                                                ItemsSource="{Binding RiskReceptors}" /> 
                <telerik:GridViewComboBoxColumn Header="Predictability of COC Concentrations"   
                                                DisplayMemberPath="Name" 
                                                SelectedValueMemberPath="ID" 
                                                DataMemberBinding="{Binding Predictability}"    
                                                ItemsSource="{Binding Predictability}" /> 
                <telerik:GridViewDataColumn Header="Notes" DataMemberBinding="{Binding Notes}"  /> 
            </telerik:RadGridView.Columns> 
        </telerik:RadGridView> 


thanks in advance.
Gene.
Nedyalko Nikolov
Telerik team
 answered on 11 Nov 2010
4 answers
204 views
I have the need to lock a grouped column... in other words, to not allow the user to close (un-group) the selected column.  Is this possible?

Take for instance grouping by the demo column "Title".  I do not want to also then display the "Title" column seeing that it is now shown in the group.  However, if you hid the "Title" column, and then programmatically group by that column... and then if the user closes that group - Oops! No "Title" column shown to re-group by later.

Thanks!
Vanya Pavlova
Telerik team
 answered on 11 Nov 2010
3 answers
77 views
I'm using the Windows 7 Theme for my WPF controls with the following code:

public Shell() {
  InitializeComponent();
 
  Telerik.Windows.Controls.StyleManager.ApplicationTheme = new Telerik.Windows.Controls.Windows7Theme();
}

The controls use the theme as expected at runtime.  However, when viewing the controls at design-time in Expression or Visual Studio they show up with the default (Office Black?) theme.  How do I select WIndows 7 (or any other theme) at design time?

Cheers,
Mike
Vanya Pavlova
Telerik team
 answered on 11 Nov 2010
4 answers
365 views
Hi..
How can I programmatically create a TreeView with several nodes as Hyperlinks that can be clicked?
Say I want to have the Mac Node as hyperlink and nav to  a URL.
thx

Fruit
    Apples
         -  Mac
         -  etc...
    Oranges
         - 
Jon
Top achievements
Rank 1
 answered on 11 Nov 2010
Narrow your results
Selected tags
Tags
GridView
General Discussions
Chart
RichTextBox
Docking
ScheduleView
ChartView
TreeView
Diagram
Map
ComboBox
TreeListView
Window
RibbonView and RibbonWindow
PropertyGrid
DragAndDrop
TabControl
TileView
Carousel
DataForm
PDFViewer
MaskedInput (Numeric, DateTime, Text, Currency)
AutoCompleteBox
DatePicker
Buttons
ListBox
GanttView
PivotGrid
Spreadsheet
Gauges
NumericUpDown
PanelBar
DateTimePicker
DataFilter
Menu
ContextMenu
TimeLine
Calendar
Installer and Visual Studio Extensions
ImageEditor
BusyIndicator
Expander
Slider
TileList
PersistenceFramework
DataPager
Styling
TimeBar
OutlookBar
TransitionControl
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
WatermarkTextBox
DesktopAlert
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
ProgressBar
Sparkline
LayoutControl
TabbedWindow
ToolTip
CloudUpload
ColorEditor
TreeMap and PivotMap
EntityFrameworkCoreDataSource (.Net Core)
HeatMap
Chat (Conversational UI)
VirtualizingWrapPanel
Calculator
NotifyIcon
TaskBoard
TimeSpanPicker
BulletGraph
Licensing
WebCam
CardView
DataBar
FilePathPicker
PasswordBox
SplashScreen
Rating
Accessibility
Callout
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?