Telerik Forums
UI for WPF Forum
4 answers
78 views
How do I get the data that I have placed into a gridView back out in the same fashion that I put it in.  I'm having a tough time with creating interactions with the grid view because I have to use some very complicated reflection techniques to retrieve the data objects based on their selection. 

In short, after I have said myGridView.itemsSource = myOriginalDataCollection<myOriginalDataObject>

How do I get from myGridView.ItemsSelected to myOriginalDataObject.allMyUntouchableAttributes?

Thanks
James Grise
Scenario VPD
SoftwareEngineer
James Grise
Top achievements
Rank 1
 answered on 15 Mar 2010
4 answers
476 views
Hi,
I am a beginner and I have a problem with RadgridView control. I have two separate RadGridView control (master-detail). Namely, when the master table is positioned on the record that has no children, the detail still shows data from previous records.
I use VS2010 RC and Trial Teleric controls for WPF.
Operating system: Windows 7 Ultimate Edition
Nebojsa
Top achievements
Rank 1
 answered on 15 Mar 2010
1 answer
99 views
When I try to submit when NumericUpDown has been entered by typing the value with the keyboard, if the NumUpDown control still has focus, then the value does not save.  Is there a way to "save" the NumUpDown state in my save button function?
Hristo Borisov
Telerik team
 answered on 15 Mar 2010
3 answers
127 views
Hi:

how can i use paging in my girdview, there is any control that can i use?

Thanks for your time and help...
Vlad
Telerik team
 answered on 15 Mar 2010
2 answers
78 views
I am programmatically creating RadDocumentPanes and then adding them to the RadPaneGroup inside of my DocumentHost for the instance of RadDocking. Now, when I open multiple DocumentPanes and switch between them by clicking their tabs, the document I'm being shown is not corresponding correctly to the tab I selected to show.

I think this may be a problem with the 2010 Q1 release as it seemed be working correctly in previous releases (not sure about the Beta), and I have not changed my code for how I am opening the documents.

Any ideas?
Miroslav Nedyalkov
Telerik team
 answered on 12 Mar 2010
9 answers
528 views
I created an XAML with the Docking, this is the main view of the application. Now I want to create a new window (effect of a user action), and then I want to give user option to dock it, to the main view. I have no clue as to how to do it.

The demos that comes with the application are only good to show functionality of the product, but not good to actually use them to create your application.
Miroslav Nedyalkov
Telerik team
 answered on 12 Mar 2010
1 answer
148 views
I am haveing trouble  rendering hierarchical data template   I have hierarchical itemsource as follows:
can you show me how to use tree with hierarchical datatemplate, I won't be knowing number of levels in the tree in advance.

#region

 

top

 

 

var top = new FacetValue()

 

{

Id = 1,

Freq =

"",

 

Values =

new FacetValue[]

 

{

 

new FacetValue

 

{

Id = 2,

Freq =

"",

 

Values =

new FacetValue[]

 

{

 

new FacetValue

 

{

Id = 3,

Freq =

"included",

 

Values =

new FacetValue[]

 

{

 

new FacetValue

 

{

Id = 4,

Freq =

"",

 

Values =

null

 

},

 

new FacetValue

 

{

Id = 5,

Freq =

"",

 

Values =

null

 

}

}

}

}

},

 

new FacetValue()

 

{

Id = 6,

Freq =

"",

 

Values =

new FacetValue[] {}

 

},

 

new FacetValue()

 

{

Id = 7,

Freq =

"excluded",

 

Values =

null

 

}

},

};

#endregion

Tina Stancheva
Telerik team
 answered on 12 Mar 2010
5 answers
296 views
Hello,

I want the users to be able to invoke a close on the tabs in my tab control, like Visual Studio's implementation.  Is that possible in your tab control for WPF?  Didn't see that demo'd anywhere...

Thanks.
Miro Miroslavov
Telerik team
 answered on 12 Mar 2010
4 answers
97 views
Hi everyone,

my problem is the Windows Forms and WPF Interoperability,
please look this sample , thanks. 

Best regards,

Massimiliano
Massimiliano Sorce
Top achievements
Rank 1
 answered on 12 Mar 2010
3 answers
117 views
Is there a way to add DataSeries to a ChartArea, which does not have a name?

I would like to create a custom layout for the ChartTitle, ChartArea, and ChartLegend in XAML but I only have access to the RadChart in code (not the ChartArea).  I know I can get to the DefaultView ChartArea through the RadChart object.  I could access the Content property of the RadChart and get the first ChartArea type, but that's not very elegant and is too dependent on the visual tree.

Any ideas?

<telerikChart:RadChart   
            x:Name="SeasonsChart"    
            VerticalAlignment="Stretch"   
            HorizontalAlignment="Stretch" 
            UseDefaultLayout="False" 
            Background="Transparent">  
        <Grid> 
            <Grid.RowDefinitions> 
                <RowDefinition Height="50"/>  
                <RowDefinition Height="*"/>  
            </Grid.RowDefinitions> 
            <Grid.ColumnDefinitions> 
                <ColumnDefinition Width="*"/>  
                <ColumnDefinition Width="Auto"/>  
            </Grid.ColumnDefinitions> 
            <Border x:Name="SeasonsImage" Grid.ColumnSpan="2" Grid.RowSpan="2" ></Border>  
            <telerikCharting:ChartTitle 
                                    Margin="20, 0, 0, 0" 
                                    Padding="5,5,5,5" 
                                    Foreground="GhostWhite" 
                                    Grid.Row="0" 
                                    Grid.Column="0"                                      
                                    HorizontalAlignment="Left" 
                                    VerticalAlignment="Bottom"/>  
            <telerikCharting:ChartArea   
                                   LegendName="SeasonsLegend" 
                                   Background="{StaticResource springTransparentBrush}"   
                                   Padding="20, 20, 0, 30"   
                                   Grid.Row="1" 
                                   Grid.Column="0"/>  
            <telerikCharting:ChartLegend   
                                     Header="Temperatures"   
                                     Visibility="Visible" 
                                     Background="{StaticResource springTransparentBrush}" 
                                     Grid.Column="1" 
                                     Grid.Row="1" 
                                     Padding="-10, 20, 20, 30"/>  
            <input:RadComboBox x:Name="SeasonCombo"   
                          SelectionChanged="SeasonCombo_SelectionChanged" 
                          HorizontalAlignment="Right"   
                          VerticalAlignment="Bottom" 
                          Margin="0, 0, 20, 0" 
                          Grid.Row="0" 
                          Grid.Column="0" 
                          MaxWidth="150" 
                          MaxHeight="30" 
                          telerik:StyleManager.Theme="{StaticResource QsfTheme}">  
                <input:RadComboBoxItem Content="Spring"></input:RadComboBoxItem> 
                <input:RadComboBoxItem Content="Summer"></input:RadComboBoxItem> 
                <input:RadComboBoxItem Content="Autumn"></input:RadComboBoxItem> 
                <input:RadComboBoxItem Content="Winter"></input:RadComboBoxItem> 
            </input:RadComboBox> 
        </Grid> 
    </telerikChart:RadChart> 
Velin
Telerik team
 answered on 12 Mar 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
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?