Telerik Forums
UI for WPF Forum
1 answer
179 views
Hi,

is there any easy way to compare to RadGridViews? Ihave two GridViews with the same ViewModel. GridViewA is the source
and GridViewB ist the target.
On Application Load i bind first the RadGrievB with Data from a Database. Afterwards i want to bind GridViewA from a second source.
But All the Items which are in GridViewA may not be in GridViewA. I hope this is clear!?

Is there a easy way to handle it? Or must i select each item from database to check if it is in the GridViewB?

GridViewA:
Source = txt-file
ViewModel=Pakete

GRidViewB:
Source=Database (original source txt-file)
Viewmodel=Pakete

Thanks a lot
Regards
Rene
Nick
Telerik team
 answered on 20 Jun 2012
2 answers
130 views
Hi,

I am evaluating the Rad controls for a new project.

specifically Radfilter and GridView.

I have added both to my project but they are not visible in designer or on the wpf form when i run the app.

Am I missing something

See xaml below

<Window x:Class="TelerikRadFilter.MainWindow"
        Title="MainWindow" Height="auto" Width="auto">
    <Grid>
        <Grid.RowDefinitions>
            <RowDefinition />
            <RowDefinition />
        </Grid.RowDefinitions>
         
        <StackPanel>
            <Button Content="YTest" HorizontalAlignment="Center" Width="100"/>
            <telerik:RadDataFilter Name="radDataFilter"  Background="Aqua"
                               Grid.Row="0"
                               MinHeight="193" MaxHeight="250" Width="700"
                               Source="{Binding Employees}"
                               Margin="1"/>
        </StackPanel>
 
       
        <telerik:RadGridView Name="radGridView"
                             Grid.Row="1"
                             MinHeight="193" MaxHeight="250" Width="700"
                             ItemsSource="{Binding Employees}" ColumnWidth="*"
                             IsFilteringAllowed="False"
                             CanUserFreezeColumns="False" RowIndicatorVisibility="Collapsed"
                             AutoGenerateColumns="False"
                             Margin="1">
            <telerik:RadGridView.Columns>
                <telerik:GridViewDataColumn DataMemberBinding="{Binding FirstName}" Header="First Name"/>
                <telerik:GridViewDataColumn DataMemberBinding="{Binding LastName}" Header="Last Name"/>
                <telerik:GridViewDataColumn DataMemberBinding="{Binding DateOfBirth}" DataFormatString="{}{0:d}" Header="Date Of Birth"/>
                <telerik:GridViewDataColumn DataMemberBinding="{Binding Address}" />
                <telerik:GridViewDataColumn DataMemberBinding="{Binding City}" />
                <telerik:GridViewDataColumn DataMemberBinding="{Binding State}"/>
                <telerik:GridViewDataColumn DataMemberBinding="{Binding Salary}" DataFormatString="{}{0:C2}" />
            </telerik:RadGridView.Columns>
        </telerik:RadGridView>
    </Grid>
</Window>
Chinedu
Top achievements
Rank 1
 answered on 19 Jun 2012
0 answers
172 views
Hello,
I am trying to bind theme of my checkboxes and ComboBox with : 
<CheckBox Content="{Binding Name}" telerik:StyleManager.Theme="{Binding MyTheme}" />

I have try with a variable MyTheme of type string and Theme but this doesn't work.

How i can do that?


Gat
Gaetan
Top achievements
Rank 1
 asked on 19 Jun 2012
1 answer
155 views
Hello,

I am trying to add a new row to my RagGridView where I host a GridViewComboBoxColumn and a GridViewDataColumn like:
<Grid>
<telerik:RadGridView>
     <telerik:RadGridView.Columns>
        <telerik:GridViewComboBoxColumn>
        </telerik:GridViewComboBoxColumn>
        <telerik:GridViewDataColumn>
        </telerik:GridViewDataColumn>
     </telerik:RadGridView.Columns>
</telerik:RadGridView>
</Grid>

The field "Click here to add new row" on RadGridView is dead and is even not clickable.
What to do make it working? I may even try to take it away but do know how.

Thanks.
DBlagg
Top achievements
Rank 1
 answered on 19 Jun 2012
6 answers
266 views
Hi,

I have problems to use RadRichTextBox (with UI) in child window because every time when child window is opened, it's uses more and more memory.

I did a very simple project where I'm using the radRichtextbox with deafult UI settings (Word prosessor) and also here I notice the same. in first time when I open the dialog with Rad components, memory grows to 110Mb => ok, but when I close the dialog and opening it again, memory grows to 120-130 and growing more every time when I close and opening the dialog .

GC.Collect does not help.

I'm using following code to open child window

 

 

MyDialog md = new MyDialog();

 

md.ShowDialog();


and like I said, dialog does ot include any additonal code, just default RadRichTextbox control with UI

Any suggestion what I can do to handle this issue?

I'm using RadRichTextBox version 2012.1.326.40

Regards,
Auvo
Vasil
Telerik team
 answered on 19 Jun 2012
1 answer
173 views
Hello,

How can I display multiple series on on the time bar?  Do I need a radchart?  If so, how can I format the chart to look like the sparkline?  Currently it requires a lot of space because of the axis and ledgend and such.

Thanks,
Eric
Tsvetie
Telerik team
 answered on 19 Jun 2012
1 answer
117 views
Hello,
I have create a window to manage resources ScheduleView for add/remove resources but when i try to update GroupDescriptions, this still doesn't work.my resourcestype is ok but not my GroupDescriptions. How i can do that?

cordially,

Gat
Vladi
Telerik team
 answered on 19 Jun 2012
1 answer
237 views
BarSeries series = new BarSeries();                 
series.CategoryBinding = new PropertyNameDataPointBinding() { PropertyName = "Name" };                 
series.ValueBinding = new PropertyNameDataPointBinding() { PropertyName = "Value" };                 
series.ShowLabels = true;                 
series.ItemsSource = points;

My ItemsSource is just a list of my datapoint class.
How do I set the label for each point?
I can do it via xaml easy enough. How about code?


<telerik:CategoricalDataPoint Category="1" Value="0.05" Label="Some Point Specific Text"> 


I tried and failed with
             <telerik:BarSeries.LabelDefinitions > 
                    <telerik:ChartSeriesLabelDefinition >
                        <telerik:ChartSeriesLabelDefinition.Template>
                            <DataTemplate>
                                <StackPanel>
                                    <TextBlock Text="{Binding}"></TextBlock>
                                    <TextBlock>
                                    <TextBlock.Text>
                                         <Binding RelativeSource="{RelativeSource FindAncestor, AncestorType={x:Type telerik:BarSeries}}" 
                                                    Path
="DataPoints[0].DataItem.MyLabelProp"/>
                                    </TextBlock.Text>
                                    </TextBlock>
                               </StackPanel>
                            </DataTemplate>
                        </telerik:ChartSeriesLabelDefinition.Template>
                     </telerik:ChartSeriesLabelDefinition>
                </telerik:BarSeries.LabelDefinitions>
Petar Marchev
Telerik team
 answered on 19 Jun 2012
2 answers
140 views
Hi,

On the ImageEditor, we do not wish to display the Toolbox, but only have Zoomin, Zoom out. How to achieve that?
Aracna
Top achievements
Rank 1
 answered on 19 Jun 2012
29 answers
508 views
Hello,

I am not yet a customer. I still hesitate which wpf suite to buy. The one from xx who has a pivot grid which I really need. Or I wait for you creating a pivot grid in wpf. Any chance this gets released somehow in the middle of 2010?

Probably you can not answer this question ;-) Maybe you can tell me the roadmap for 2010? Or is this still a secret?
Milan
Telerik team
 answered on 19 Jun 2012
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
NavigationView (Hamburger Menu)
Wizard
ExpressionEditor
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
Callout
PasswordBox
SplashScreen
Localization
Rating
Accessibility
CollectionNavigator
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Marco
Top achievements
Rank 4
Iron
Iron
Iron
Hiba
Top achievements
Rank 1
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
Max
Top achievements
Rank 1
Veteran
Iron
Alina
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?