Telerik Forums
UI for WPF Forum
22 answers
519 views
I have a RadDatePicker in which I set IsTabStop="True" and TabIndex=4.
However, this does not work the way I expected it to.
As TabStop #4 The whole RadPicker is selected - and I can no "do" anything but move on - there's no way to type text in the TextBox or open the picker dialog.
However at the end of my hand-set-tab-order the tab jumps into the the RadDatePicker-TextBox to edit the date.

How can I make the RadDatePicker-TextBox be part of my TabOrder ??

I am using the RadControls for wpf 2009.Q2

yours,
Nils
Boyan
Telerik team
 answered on 07 Jan 2013
3 answers
311 views
Hi,

since my last Update with the "TelerikControlPanelSetup_2012_2_718", one menue item is missing im my visual studio 2010!
How can i restore it?

Missing Item:

Telerik - RadControls for WPF

Thanks
Best Regards
Rene
ITA
Top achievements
Rank 1
 answered on 07 Jan 2013
4 answers
150 views
I rebuilt my system and installed the latest controls I have access to:
RadControls_for_WPF_2012_2_0607_Dev.msi

However, the documentation is not installed even though it says it is. I don't see in the program files folder and it's not in the MSDN help collection. I download the zip file instead and there's no help files in there.

I downloaded help files from here:
http://www.telerik.com/documents/RadControlsForWpf-help3.zip

But no documenation appeared in MSDN. However my VS2008 MSDN no longer works after that:
"Microsoft Document Explorer cannot be shown because the specified help collection 'ms-help://MS.MSDNQTR.v90.en' is invalid."

The 'View_RadControls.For.WPF' shortcut does show the docs but not in the merged help. Please help. I don't recall having this issue with previous version. I have VS2008 and VS2010, although I only use 2008 for compact framework projects.
Andrey
Telerik team
 answered on 04 Jan 2013
1 answer
165 views
Hi,

I have two questions for the spell checker used in Radgrid view.

1. Is there anyway that it automatically shows the red wavy (a red curve line) under a incorrect word in the edit mode? I read the
documentation, the RichTextBox has this support, can we do that for the gridView columns?
2. If yes for 1, myy columns are generated dynamically with MVVM (Caliburn Micro), any sugestions to add the above
supports in code (for instance, add it in the grid columns)?

Thanks in advance.

Henry
Petya
Telerik team
 answered on 04 Jan 2013
2 answers
804 views
I have a radgrid set up that displays two columns which are NOT auto generated. Using some of your other examples, I have found a way to color an entire row if the value of the text in a particular column is set to a certain status, using a custom converter class.

I am at a loss however as to how to apply this only to a single column or the cells in that column. In other words how do I change the background color for cells in a single column rather than the entire row or every cell for that matter? This seems like it should be relatively simple, but I have not come across any supporting documentation with a straightforward example.

Here is the XAML I have currently for the grid that sets the entire row color:

My grid.resources definition where I reference my custom class:

<Grid.Resources>
                <local:StatusColorConverter x:Key="ColorConverter"></local:StatusColorConverter>
</Grid.Resources>


XAML For the RadGrid Itself:

<telerik:RadGridView Name="radGrid1" HorizontalAlignment="Stretch" VerticalAlignment="Stretch" ShowGroupPanel="False" Margin="5,10,0,100" DataLoaded="radGrid1_DataLoaded" SelectionChanged="radGrid1_SelectionChanged" AutoGenerateColumns="False" IsFilteringAllowed="False" ItemsSource="{Binding}" EnableColumnVirtualization="False"  CanUserResizeColumns="False">
                <telerik:RadGridView.Columns>
                    <telerik:GridViewDataColumn Header="Name" DataMemberBinding="{Binding SerialNumber}" IsReadOnly="True" UniqueName="Name" ShowFilterButton="False" AllowDrop="False" FooterTextAlignment="Left" Width="Auto" />
                    <telerik:GridViewDataColumn Header="Status" DataMemberBinding="{Binding StatusDescription}" IsReadOnly="True" UniqueName="Status" ShowFilterButton="False" Width="Auto" />
                </telerik:RadGridView.Columns>               
                <telerik:RadGridView.RowStyle>
                    <Style TargetType="telerik:GridViewRow">
                        <Setter Property="Background" Value="{Binding Status,Converter={StaticResource ColorConverter}}"></Setter>
                    </Style>
                </telerik:RadGridView.RowStyle>
            </telerik:RadGridView>


Custom Color Converter Class:

public class StatusColorConverter: IValueConverter
    {
        public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture)
        {
            Status status = (Status)value;
            SolidColorBrush color = null;
             
            switch (status)
            {
                case Status.Status_A:
                case Status.Status_B:
                 
                color =  new SolidColorBrush(Colors.Red);
 
                    break;
 
                case Status.Status_C:
                    color = new SolidColorBrush(Colors.Green);
                    break;
 
                default:
                    // No color by default.
                    color = new SolidColorBrush();
                    break;
            }
            return color;
        }

Again this works well for coloring the entire row, but I require only the cells in a single column to change color.

Any guidance would be appreciated.

Thank you in advance.
Justin
Top achievements
Rank 1
 answered on 04 Jan 2013
4 answers
247 views
Can someone post an example of how to detect that a radtileviewitem has been dragged outside of window it is contained in? 

I'm using the new DragDropManager and have already attached the events to the tileviewitem (draginitialize, dragleave, dragcompleted, etc.) but can't seem to figure out how to tell if the item is outside it's parent window from the args in the DragDropCompletedEventArgs eventargs. Dragleave seems to fire if the item has left the tileview container. I want to capture this if it has left it's parent window.

Many thanks..
Kevin
Top achievements
Rank 1
 answered on 04 Jan 2013
0 answers
183 views
Good Day 
 
I am missing something, in SL there is a media player control , don't we have it in WPF ? i remember searching for a such in this forum and someone from telerik said they will include in their big release, the post was for 2009. Do we have a media player in WPF ? 


Thanks 

Vuyiswa
Top achievements
Rank 2
 asked on 04 Jan 2013
5 answers
297 views
Is it possible to force a RadPanelBarItem to be always open? (hide the expander button, disable double click on header)
Tina Stancheva
Telerik team
 answered on 04 Jan 2013
1 answer
110 views
Hello,

I'm fairly new to WPF, so please excuse my ignorance.  I'm trying to achieve two working areas for my program.  On the left should be a pinned tab which can be pinned/unpinned as needed.  The rest of the area should be taken up by a content area. 

I've achieved this with the following code:
<telerik:RadDocking Grid.Row="1" HasDocumentHost="False" >
 
            <telerik:RadSplitContainer telerik:RadDocking.DockState="DockedLeft" >
 
                <telerik:RadPaneGroup Name="SourceGroup">
 
                    <telerik:RadPane  Header="Sources" ContextMenuTemplate="{x:Null}" CanFloat="False" CanUserClose="False" IsPinned="True" />
 
                </telerik:RadPaneGroup>
 
                <telerik:RadPaneGroup >
 
                    <telerik:RadPane  Header="Data" ContextMenuTemplate="{x:Null}" CanFloat="False" CanUserClose="False" IsPinned="True" CanUserPin="False" />
 
                </telerik:RadPaneGroup>
 
            </telerik:RadSplitContainer>
 
        </telerik:RadDocking>

I want to keep the "Sources" pinnable pane to either a relative or absolute maximum size.  The content seems to break when I resize the window.  I've tried setting the MaxWidth on the RadPaneGroup and setting the HorizontalAlignment = "Left", but either way weird effects are produced.  I've included pictures of the two behaviors.  Thanks for any help you can give.
MadBojo
Top achievements
Rank 1
 answered on 03 Jan 2013
3 answers
177 views
Hello!

I use Telerik WPF Controls Q2 2012 for my project and I have a radgridview with filter row enabled.

In old telerik gridview for winforms each time I write in the search textbox of the filter row gridview starts filtering rows. In WPF Radgridview filtering doesn't starts until I lost focus from search textbox or I press Enter. I would like to get filter row function as the old winform gridview, can anybody halp me please?
Rossen Hristov
Telerik team
 answered on 03 Jan 2013
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
LayoutControl
ProgressBar
Sparkline
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
Callout
Rating
Accessibility
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?