Telerik Forums
UI for WPF Forum
1 answer
122 views
Hi,

I have a simple text box where I would like to use a SpellChecker for norwegian language.
Can you give me any guidelines how I can do that?

Thanks
Petya
Telerik team
 answered on 07 Mar 2014
2 answers
149 views
I've just updated to the latest version of the WPF controls, and the little drop down button is not working on the document host in a docking window. The button highlights and clicks, but there's no drop down menu. This used to work, so I'm assuming some default property has been altered - or there's a bug?
Jason
Top achievements
Rank 1
 answered on 07 Mar 2014
8 answers
672 views
I want the value with the formatting characters. I was under the impression that I could bind to the Text property of the RadMaskedTextInput to do just that. However, the data binding doesn't work. It works fine if I bind to the Value property, but I don't get the formatting characters I want.
Petar Mladenov
Telerik team
 answered on 07 Mar 2014
2 answers
92 views
Hi. Please help to find solution. I tried to use following sample application attached here in thread below.
http://www.telerik.com/forums/y-axis-values-on-radcartesianchart-with-zoom
Here I see same issue which I can't resolve in mine application.

To reproduce it please do following:
1. Open sample app.
2. Select with mouse some part of chart, then release mouse.
Now notice values on that Y-axis are changed, but chart line not fit region from top to bottom. There is lot of space to top or bottom, depends on which initial area was selected.
3. Now touch scrollbar and move it a bit. You see that now chart line fit region completely.

Question here. Is there any way to force chart redraw asap after zoomed with mouse, so chart line will fit new Y-axis.

Thanks in advance.
alex.z
Top achievements
Rank 1
 answered on 07 Mar 2014
3 answers
744 views
I am attempting to use  RadPanelBar as accordion panel, where all the items are independently expanded or collapsed.
When I do the data binding though, all the controls are appearing in the header.
After looking around, I understand that I need to use a hierarchical data template. I would greatly appreciate any pointers or sample code in achieving this.
Boris
Telerik team
 answered on 06 Mar 2014
1 answer
298 views
I wrote code for a custom ScrollViewer style that only displays a ScrollViewer's HorizontalScroller once the mouse is over a clipped StackPanel, but this started to act strangely when I tried it under the docking controls. The first image shows what normally happens when you mouse over a clipped StackPanel (its clipped so the StackPanel simply just shows up, all is good).

However, when you drag Panel Two and re-dock it in the same spot as in the first picture (just under Panel One again) and then mouse over it...you start to see the left and right arrows and a roll out animation on the control (it rolls in from the left and also resets the ScrollViewer's HorizontallScroller to a horizontal position of 0). Please see the second image for this.

Here is the entire code for my WPF project that uses docking which I wrote (uses RadControls for WPF version 2013.3.1204.45):

<Window x:Class="RadDockingTests.MainWindow"
        Title="MainWindow" Height="350" Width="525">
    <Window.Resources>
        <Style x:Key="CustomScrollViewerStyle" TargetType="ScrollViewer">
            <Setter Property="VerticalScrollBarVisibility" Value="Disabled"/>
            <Style.Triggers>
                <Trigger Property="IsMouseOver" Value="True">
                    <Setter Property="HorizontalScrollBarVisibility" Value="Auto"/>
                </Trigger>
                <Trigger Property="IsMouseOver" Value="False">
                    <Setter Property="HorizontalScrollBarVisibility" Value="Hidden"/>
                </Trigger>
            </Style.Triggers>
        </Style>
    </Window.Resources>
    <Grid>
        <telerik:RadDocking Name="radDocking">
            <telerik:RadDocking.DocumentHost>
                <telerik:RadSplitContainer Orientation="Vertical">
                    <telerik:RadPaneGroup Name="radPaneGroup">
                        <telerik:RadPane Header="Pane One">
                            <telerik:RadPane.Content>
                                <ScrollViewer Style="{StaticResource CustomScrollViewerStyle}">
                                    <StackPanel Orientation="Horizontal">
                                        <Button Content="This is some filler content."/>
                                        <Button Content="This is some filler content."/>
                                        <Button Content="This is some filler content."/>
                                        <Button Content="This is some filler content."/>
                                        <Button Content="This is some filler content."/>
                                        <Button Content="This is some filler content."/>
                                        <Button Content="This is some filler content."/>
                                        <Button Content="This is some filler content."/>
                                    </StackPanel>
                                </ScrollViewer>
                            </telerik:RadPane.Content>
                        </telerik:RadPane>
                    </telerik:RadPaneGroup>
                    <telerik:RadPaneGroup>
                        <telerik:RadPane Header="Pane Two">
                            <telerik:RadPane.Content>
                                <ScrollViewer Style="{StaticResource CustomScrollViewerStyle}">
                                    <StackPanel Orientation="Horizontal">
                                        <Button Content="This is some filler content."/>
                                        <Button Content="This is some filler content."/>
                                        <Button Content="This is some filler content."/>
                                        <Button Content="This is some filler content."/>
                                        <Button Content="This is some filler content."/>
                                        <Button Content="This is some filler content."/>
                                        <Button Content="This is some filler content."/>
                                        <Button Content="This is some filler content."/>
                                    </StackPanel>
                                </ScrollViewer>
                            </telerik:RadPane.Content>
                        </telerik:RadPane>
                    </telerik:RadPaneGroup>
                </telerik:RadSplitContainer>
            </telerik:RadDocking.DocumentHost>
        </telerik:RadDocking>
    </Grid>
</Window>
Masha
Telerik team
 answered on 06 Mar 2014
1 answer
123 views
Hi,

  I need to use the data virtualization in the gridview component. My source is a IQueryable and after enumerating i need sometimes to do another projection and create a dynamic property. My user case is the following:
 
There's 3 tables with the following relationships:
A---B---C---D
1---n----m---m

My query gets the following hierarchical object: 
A
   |
   ---B
        |
        C--D

My GUI has 3 GridView Components, with the following binding each:
Grid 1: {Binding A}
Grid 2: {Binding A/B}
Grid3: {Binding A/B/C.D} //Error

Grid 3 has an binding error because The Current B item has multiple C items and it cannot do a C.Select(s=>s.D) automatically.


How can i using data virtualization do this binding?



Thanks


        
Dimitrina
Telerik team
 answered on 06 Mar 2014
1 answer
273 views
I am using the rest of the AutoCompleteBox without issues. I do have one issue.  After a user is finished making a selection and comes back later to use the Box again, they click on the box, but the 'old' text is still there.  Is there a way to have AutoCompleteBox highlight all the text in the box when it gets the focus again?  Right now it just puts the cursor at the end of the line.

Thanks,

Russ
Kalin
Telerik team
 answered on 06 Mar 2014
3 answers
182 views
I know I can export a RadDiagram as image using the ExportToImage method, this works fine but allows to paste a static image (bmp, jpg...).
For my users it will be really useful to paste a set of shapes, in order to re-arrange them into PowerPoint (or change size, color...).

This feature should be one-way only: I don't need to support the case of a user pasting from Office to the RadDiagram... Is it possible?

Any idea?
Tina Stancheva
Telerik team
 answered on 06 Mar 2014
2 answers
363 views
how to disable or hide the expand/collapse column RadGridView when using the HierarchyChildTemplate
Yoan
Telerik team
 answered on 06 Mar 2014
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
Rating
SplashScreen
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
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?