Telerik Forums
UI for WPF Forum
1 answer
62 views
Am I missing something or is the documentation extremely incomplete at the moment? I most of the methods (at least the ones I've checked do not even have a description).
Milan
Telerik team
 answered on 28 Mar 2011
4 answers
136 views
Hi.
I need to bind my radtreelistview control to a XMLdocument which would be generated dynamically.Can you please provide a sample to achieve this?
Sharada
Top achievements
Rank 1
 answered on 28 Mar 2011
2 answers
68 views
Hello Telerik Team,
                              I am very happy to use Telerik controls.Bcoz it gives some color when Mouse Over and cursor on focus.

Example radcombox. when mouse over radcombo box border color change to yellow color.
In my UI i have some microsoft TextBox as well as telerik controls.i want to set all controls yellow color when mouse over.

Normally Microsoft wpf textbox does not give any color when mouse over.
How to set it?
can u give any suggession? 
sivakanth
Top achievements
Rank 1
 answered on 26 Mar 2011
5 answers
478 views
which text box can i use my layout design?
 having any rad text box in telerik?
trichy
Top achievements
Rank 1
 answered on 26 Mar 2011
0 answers
61 views
Hi.
I am binding radtreelistview with a xml document.Can you please suggest whether is it possible to save the state of the nodes (expanded/collapsed) on update ? I would appreciate your help.
Sharada
Top achievements
Rank 1
 asked on 25 Mar 2011
4 answers
77 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
304 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
198 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
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?