Telerik Forums
UI for WPF Forum
4 answers
78 views
Hi,

I have several comboboxes whose itemssource is bound to a common list of strings, when the list changes I raise a propertychanged event. In some circumstances some of the comboboxes display all of the strings and some do not. However the ones not showing all the strings do still find them for autocomplete purposes..
Trevor
Top achievements
Rank 1
 answered on 25 Mar 2011
1 answer
305 views
Hi,

I seem to have a probelm when trying to adjust the font size of the RadRichTextBox. If i set the FontSize attribute then it doesn't change the size of the text when entered. It always remains at size 12 which is to big for my UI.

What am i doing wrong?  
Boby
Telerik team
 answered on 25 Mar 2011
1 answer
199 views
I have 3 PaneGroups and I'd like one docked on the left, one docked on the top and one to have the equivalent of the WinForms Dock.Fill.

Here's what I have:
<telerik:RadDocking HasDocumentHost="True" HorizontalAlignment="Stretch" Name="radDocking1" VerticalAlignment="Stretch" Grid.ColumnSpan="2" Margin="0,30,0,0">
    <telerik:RadSplitContainer Orientation="Vertical">
        <telerik:RadPaneGroup Name="rpgExplorer" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
            <telerik:RadPane Header="Pane 1" />
            <telerik:RadPane Header="Pane 2" />
        </telerik:RadPaneGroup>
    </telerik:RadSplitContainer>
    <telerik:RadSplitContainer Orientation="Horizontal" InitialPosition="DockedTop">
        <telerik:RadPaneGroup Name="rpgUpper" HorizontalContentAlignment="Left" VerticalContentAlignment="Stretch">
            <telerik:RadPane Header="Pane 1" />
            <telerik:RadPane Header="Pane 2" />
        </telerik:RadPaneGroup>
    </telerik:RadSplitContainer>
    <telerik:RadSplitContainer Orientation="Horizontal" InitialPosition="DockedTop">
        <telerik:RadPaneGroup Name="rpgLower" HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
            <telerik:RadPane Header="Pane 1" />
            <telerik:RadPane Header="Pane 2" />
        </telerik:RadPaneGroup>
    </telerik:RadSplitContainer>
</telerik:RadDocking>

How do I get the third RadSplitContainer to perform the equivalent of Dock.Fill?
George
Telerik team
 answered on 25 Mar 2011
2 answers
90 views
Here's a very simple sample. Maximize the window, click on a grid and just hold down the "down arrow" key. After a few seconds at most, you will see that current item will keep on being updated as the grid scrolls down, while the selected item just disappears.

<Window x:Class="WPFSpike2.MainWindow"
        xmlns:Controls="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView" Title="MainWindow" Height="350" Width="525">
     
    <Window.Resources>
        
    </Window.Resources>
    <UniformGrid Rows="3"
                 Columns="3">
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
 
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Single"
                                 RowHeight="25" />
 
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
 
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Extended"
                                 RowHeight="25" />
 
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
 
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Extended"
                                 RowHeight="25" />
 
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
 
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Extended"
                                 RowHeight="25" />
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
 
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Extended"
                                 RowHeight="25" />
 
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Extended"
                                 RowHeight="25" />
 
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
 
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Extended"
                                 RowHeight="25" />
 
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
 
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Extended"
                                 RowHeight="25" />
 
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
        <UniformGrid Rows="3"
                     Columns="3">
            <Button Content="TopLeft" />
            <Button Content="Top" />
            <Button Content="TopRight" />
            <Button Content="Left" />
 
            <telerik:RadGridView ShowGroupPanel="False"
                                 ItemsSource="{Binding Points}"
                                 IsSynchronizedWithCurrentItem="False"
                                 SelectionUnit="Cell"
                                 SelectionMode="Extended"
                                 RowHeight="25" />
 
            <Button Content="Right" />
            <Button Content="BottomLeft" />
            <Button Content="Bottom" />
            <Button Content="BottomRight" />
 
        </UniformGrid>
 
    </UniformGrid>
 
</Window>
Yordanka
Telerik team
 answered on 25 Mar 2011
2 answers
34 views
Can we specify multiple filter descriptor for muliple columns? I think one way is using composite filter descriptor and setting the logical or and and condition. 

Also Can we bind the value property of Filter Descriptor with a textbox or a property in view model. I am following up MVVM so dont want to use code behind events..

Thanks
Ambuj
Ambuj
Top achievements
Rank 1
 answered on 25 Mar 2011
7 answers
184 views
Hi

I am using TreeListView.
I am adding columns dynamically.
How to acees the Row Cells to put value.
or how to add data to the dynamically generated coulms.

I want to manupulate the values before displaying in Row.

Thanks.
Jorge
Top achievements
Rank 1
 answered on 25 Mar 2011
3 answers
151 views

Hello

I have lookup in combo box column in grid

The problem is the filter display the value of the lookup

I need to display the Name property in the look up and select the value property

Unfortunately I can't Attached picture look at the telerik demos

Grid view -> columns->combo box column->classic binding to object

Best regards

Ehud

 

Andrey
Top achievements
Rank 1
 answered on 25 Mar 2011
0 answers
111 views
I was wondering if anyone could give me an an example of connecting a radgridview to a sql table using ADO.NET entities and also providing code (C#) for adding,deleting records from the gridview that will delete records from the sql table
Colin Wright
Top achievements
Rank 2
 asked on 25 Mar 2011
1 answer
47 views
Hi all,

We are looking for 3rd party WPF controls for a new WPF project with the MVVM design pattern. We would like to use your grid, it should be easy to copy/cut/past rows and to recalculate fields because its a calculation program. Is this possilble with that control and why should we use yours and not DevExpress for instance?

Thank you for your answer.
Vlad
Telerik team
 answered on 25 Mar 2011
1 answer
173 views
Can you tell me if there is a way to hide the minimize/maximize Icon?  Basically I am just going to using this control to surround basic forms because it has nice looking header that matches the rest of my application.  If there is a better way to do this let me know, I am pretty new to WPF so maybe I am going down the wrong road here.  Thanks!
Zarko
Telerik team
 answered on 25 Mar 2011
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
Book
FileDialogs
ToolBar
ColorPicker
TimePicker
SyntaxEditor
MultiColumnComboBox
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
DesktopAlert
WatermarkTextBox
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
VirtualKeyboard
HighlightTextBlock
Security
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Ambisoft
Top achievements
Rank 2
Iron
Pascal
Top achievements
Rank 2
Iron
Matthew
Top achievements
Rank 1
Sergii
Top achievements
Rank 1
Iron
Iron
Andrey
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?