Telerik Forums
UI for WPF Forum
1 answer
95 views
Hi all,

We are testing to buy the library. For this we did a nice prototype in Silverlight to test RadControl.
Now i'm converting the silverlight prototype to WPF to see how the RadControl lib behaves since we have to choose a lib which is 100% compatible with silverlight and WPF. We don't want to wonder each time we do something in silverlight if it is potential broken on WPF.

Currently I'm facing a problem with RadControl and the WPF version of our prototype. Visual Studio saying it can't find reference to some RadControl component.

RadDockPanel
RadDockPanel.Dock
HierarchicalDataTemplate

It logs Erreur    2    Erreur de génération inconnue, 'MC3074 : la balise 'HierarchicalDataTemplate' n'existe pas dans l'espace de noms XML 'clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls'. Ligne 16 Position 10.'  

Erreur    3    Erreur de génération inconnue, 'MC3074 : la balise 'RadDockPanel' n'existe pas dans l'espace de noms XML 'clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls'. Ligne 32 Position 10.' 

Erreur    4    Le type 'telerik:RadDockPanel' est introuvable. Assurez-vous qu'il ne manque aucune référence d'assembly et que tous les assemblys référencés ont été générés. 

I've well added references with all Telerik's references availables.

So my question is why it does not found this telerik components in WPF version?

This raises 2 important questions

1) Do all the Telerik's components available in silverlight are available in WPF ?
2) Do all the Telerik's components have the same naming in both SDK ?


Thank you by advance for your support.

Luciano
Miroslav
Telerik team
 answered on 12 Jan 2010
1 answer
125 views
Is there any easy way to display item reflections using a RadCarouselPanel.   This is very easy to do using a RadCarousel, but the same functionality isn't present with the panel.  In my application I have a RadCarouselPanel with a bunch of images added to it.  I want to display a reflection for this images.  How do I do this?
Milan
Telerik team
 answered on 12 Jan 2010
1 answer
101 views
how can i disable this trigger?
(on windows with dark background and light foregroung it's really annoying)

or change the background of the border that get's it's opacity animated, to transparent?


can you show me an example?

i'm using the win7 theme


thanks
Dimitrina
Telerik team
 answered on 12 Jan 2010
5 answers
235 views
Hi,

I would like to implement Drag & drop with Buttons on Wrappanels. The buttons are generated by code.

May anyone can show me the way ? I'm totally lost...

Cheers

Lorenz
Miroslav
Telerik team
 answered on 12 Jan 2010
1 answer
166 views
Hi,
I would like to assign key gestures (like F2, oder Ctrl-F2) to Toolbar Items. How can I do that ?

Kind regards

Lorenz
Ivan
Telerik team
 answered on 12 Jan 2010
3 answers
218 views
Hi Telerik Team,

I was using Rad Gridview for WPF to build a hierarchial view of contents. I have already reported few formatting issues that I faced during my development. But this seems to be a critical issue as it happens on the Databinding, proudcing totally inconsistent results and presenting the data inappropriate. Please do have a look at the screenshots I have attached.
The issue seems to happen only after, when all the nodes or row details are expaned at a time. This does not happens when I expand and collapse single node or row detail at a time. Even it does not seems to happen when I had two nodes or row details expanded. When the number of expanded nodes or row details at a time are more, the data bound to the child grids are inappropriate, meaning the data relation ship between the parent and child records are collapsed, resulting in displaying non-related child data.

DataBindIssue1.png - Shows the gridview loaded with initial data
DataBindIssue2.png - Shows the correct child data being displayed when the nodes are expanded (only 2 nodes expanded)
DataBindIssue3.png - Shows the correct Row Details bounded to the child grid
DataBindIssue4.png and DataBindIssue5.png - show the incorrect child data displayed after I have expanded and collapsed all the nodes at a time (and expanded few row details in the child grids of different parent rows)

The row details are implemented with add/edit options but neither of the operation is performed during this testing. I was about to do a demo with this application, but stopped because of these issues. Can you please provide me a possitive reply sooner?

thanks and regards...
NK


yenkay
Top achievements
Rank 2
 answered on 12 Jan 2010
2 answers
177 views
How do I apply the Windows7 Theme to a PasswordBox?  The following code doesn't work:

    <UserControl.Resources> 
        <Style TargetType="PasswordBox" BasedOn="{StaticResource {telerik:ThemeResourceKey ThemeType=telerik:Windows7Theme, ElementType=PasswordBox}}" /> 
    </UserControl.Resources> 
Dimitrina
Telerik team
 answered on 12 Jan 2010
1 answer
339 views
I have a grid that could have as many as 3000 rows in it.  I have 5 ReadOnly columns and one CheckBox column that is enabled.  The user needs to:

  • move from record to record using the up/down keyboard arrows.
    • On moving up and down, the focus needs to remain on the CheckBox column.
    • User should have a visual queue which row and column is selected.  Currently, row is obvious; column is not.

 

  • press the spacebar to toggle the checkbox value to the next/other value.
    • I'm not convinced that putting a KeyDown event handler on the CheckBox is valid because it seems the keydown is actually on the cell that contains the CheckBox.

How can I accomplish this?

Grid:

                                <telerikGrid:RadGridView x:Name="equipmentGrid" Grid.Row="1"   
                                        AutoGenerateColumns="False" ShowGroupPanel="True">  
                                    <telerikGrid:RadGridView.Columns> 
                                        <telerikGrid:GridViewDataColumn Header="System"   
                                            DataMemberBinding="{Binding Root}" IsReadOnly="True"  /> 
                                        <telerikGrid:GridViewDataColumn Header="Area"   
                                            DataMemberBinding="{Binding Area}" IsReadOnly="True"  /> 
                                        <telerikGrid:GridViewDataColumn Header="Process Cell"   
                                            DataMemberBinding="{Binding ProcessCell}" IsReadOnly="True"  /> 
                                        <telerikGrid:GridViewDataColumn Header="Unit"   
                                            DataMemberBinding="{Binding Unit}" IsReadOnly="True"  /> 
                                        <telerikGrid:GridViewDataColumn Header="Module"   
                                            DataMemberBinding="{Binding Module}" IsReadOnly="True"  /> 
 
                                        <telerik:GridViewDataColumn     
                                            Header="Include" 
                                            IsCustomSortingEnabled="True"     
                                            IsFilterable="True">  
                                            <telerik:GridViewColumn.CellTemplate> 
                                                <DataTemplate> 
                                                    <CheckBox  
                                                        VerticalAlignment="Center"    
                                                        IsChecked="{Binding Path=IsChecked}"    
                                                    /> 
                                                </DataTemplate> 
                                            </telerik:GridViewColumn.CellTemplate> 
                                        </telerik:GridViewDataColumn> 
 
                                </telerikGrid:RadGridView.Columns> 
                            </telerikGrid:RadGridView> 

Note:  This is how the out-of-the-box CheckBoxColumn in the MS Grid works.
Nedyalko Nikolov
Telerik team
 answered on 12 Jan 2010
1 answer
117 views
Hi,
I would like to change colors for GridViewDynamicHyperlinkColumn. Now there is blue text (mouse over red text).
Final result should be text gray (mouse over only underline text).
I tried to customize GridViewCell template but it is universal template and I was not able to find parts for GridViewDynamicHyperlinkColumn. May be there are Specific ContentTemplates but I do not know how to edit it.
Could you attach simple example how to style?

Thank you.

EDIT: no answer, no solution, where is my 24hrs support...
Tsvyatko
Telerik team
 answered on 12 Jan 2010
8 answers
399 views
I can define a column to have a checkbox 2 ways. I way gives me one click change, the other I have to click 3 times to check or uncheck the box the first time. The second way is much shorter, but the first gives me the one click.

Just curious if this is a feature or bug?

This gives me the one click change:
                    <telerik:GridViewDataColumn  
                        HeaderText="Is Default with cell template"  
                        IsCustomSortingEnabled="True"  
                        IsFilterable="True" > 
                        <telerik:GridViewColumn.CellTemplate> 
                            <DataTemplate> 
                                <CheckBox  
                                    VerticalAlignment="Center" 
                                    IsChecked="{Binding Path=IsDefault}" 
                                /> 
                            </DataTemplate> 
                        </telerik:GridViewColumn.CellTemplate> 
                    </telerik:GridViewDataColumn> 

While this takes three clicks to change the value.
Click 1- set focus to the cell
Click 2- set control active
Click 3- change value.
                    <telerik:GridViewDataColumn  
                        HeaderText="Is Default"  
                        IsCustomSortingEnabled="True"  
                        IsFilterable="True"  
                        DataMemberPath="IsDefault"
                    </telerik:GridViewDataColumn> 

Nedyalko Nikolov
Telerik team
 answered on 12 Jan 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
DataPager
PersistenceFramework
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
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Boardy
Top achievements
Rank 2
Veteran
Iron
Benjamin
Top achievements
Rank 3
Bronze
Iron
Veteran
ivory
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ClausDC
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?