Telerik Forums
UI for WPF Forum
1 answer
133 views
I´d like to know if the problem mentioned in this thread (http://www.telerik.com/community/forums/wpf/datepicker/display-date-format.aspx) was solved in the latest release of RadDatePicker control.

Thanks

Marcelo



Kaloyan
Telerik team
 answered on 14 Jun 2010
1 answer
120 views
Hi, I'm getting notification from the VS2010 Extensions Manager that there are updates for the Telerik vs extensions for WebUI, Silverlight and WPF but also being told by the Extension Manager that I have to uninstall them through Windows Add/Remove program.  But there doesn't appear to be a separate installer for this.  How do I do the update?

Thanks
Erjan Gavalji
Telerik team
 answered on 14 Jun 2010
1 answer
109 views
Setting the FrozenColumnCoun from CodeBehind works fine.
But... setting the FrozenColumnCoun in the xaml does not work anymore...
Vlad
Telerik team
 answered on 14 Jun 2010
2 answers
133 views
Hello,

I'm new to WPF,
Is there any small sample on how to Insert,Update,Delete items in a gridview using LINQ?

Thanks,
Mike

Mike_T
Top achievements
Rank 1
 answered on 13 Jun 2010
12 answers
157 views
I Need to know what is SUPPORT for POCO classes with Telerik Control Especially with RadGridView control.

however need to know what is Support for selfTracking Enitities / Linq to SQL/ WCF Data Services.


Muhammad
Top achievements
Rank 1
 answered on 13 Jun 2010
5 answers
361 views
Hi all and sorry if my query was already discussed on this forumm but I was unable to find what I'm looking for!

I've started playing with your incredible controls and have seen some diferrent ways of changing row styles for the gridview but, I am trying to bind the value of a column from a dataset (the column name is Color and contains an unsigned integer value) which contains customer's details (customer ids, names, adresses, date of births, customer types, etc.), to the "background" color of the coresponding row depending on the cusotmer type, for example  if customer type is 2 then the color field for the related row is 100, 100 represents the red color, and so on...

Is there a way of doing that, or should I just find out another aproach, the dataset with all the details is set as the item source of the grid as bellow:

radGridView1.ItemsSource = dsCustomerDetails;


Another great thing will be if you can let me now which component from the radgridview control exposes the property which give the color of the row from the grid when I'm editing the control parts templates, I was unable to find the component which give the "row style" in order to try to edit a copy of that template whcih will have a different behave depending on my needs?

Please any help will be greatly appreciated,

thanks alot!
M
Top achievements
Rank 1
 answered on 11 Jun 2010
4 answers
322 views
Hi,

I have a grid bound to an observable collection of xmlnode. When I make changes in grid, that is getting reflected in the bound observable collection. Is there any provision to find only the changed values from the observable collection? 

Please help

Thanks and Regards,
Norbert John

M
Top achievements
Rank 1
 answered on 11 Jun 2010
1 answer
121 views
Hi,

I'm using a LinearScale where Orientation="Horizontal" with a RangeList.  I have 3 LinearRanges defined, low, mid, and high.  However, the LInearRange background does not display past just over the midpoint of the Horizontal LInearScale.  I have created a sample application to demonstrate this behavior.

<Window x:Class="WPFLinearGauge.Window1" 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" 
    Title="Window1" Height="500" Width="500"
    <Grid > 
        <Grid.ColumnDefinitions> 
            <ColumnDefinition Width="150" /> 
            <ColumnDefinition Width="350" /> 
            <ColumnDefinition Width="350" /> 
        </Grid.ColumnDefinitions> 
        <telerik:LinearScale x:Name="lsQty1" Height="200" Width="200" Orientation="Vertical" HorizontalAlignment="Stretch"  
                             VerticalAlignment="Center" Min="0" Max="100" Grid.Column="0"
             
            <telerik:LinearScale.Label> 
                <telerik:LabelProperties Offset="0" Location="Outside" /> 
            </telerik:LinearScale.Label> 
             
 
            <telerik:RangeList> 
                 
                <telerik:LinearRange x:Name="lrQtyLow1"  
                                     StartWidth="0.05" 
                                     EndWidth="0.05" 
                                     Location="OverCenter" 
                                     Background="Red" 
                                     BorderBrush="#7FFFFFFF" Min="0" Max="100"/> 
                <telerik:LinearRange x:Name="lrQtymid1"  
                                     StartWidth="0.05" 
                                     EndWidth="0.05" 
                                     Location="OverCenter" 
                                     Background="LightGreen" 
                                     BorderBrush="#7FFFFFFF" Min="25" Max="75"/> 
                <telerik:LinearRange x:Name="lrQtyhigh1"  
                                     StartWidth="0.05" 
                                     EndWidth="0.05" 
                                     Location="OverCenter" 
                                     Background="Green" 
                                     BorderBrush="#7FFFFFFF" Min="75" Max="100"/> 
            </telerik:RangeList> 
 
            <telerik:IndicatorList> 
                <telerik:Marker x:Name="mQty1" 
                                RelativeHeight="0.075" 
                                RelativeWidth="0.075" 
                                IsAnimated="True" 
                                Value="50" 
                                Location="OverCenter" 
                                Background="Blue"/> 
            </telerik:IndicatorList> 
        </telerik:LinearScale> 
 
        <telerik:LinearScale x:Name="lsQty2" Height="200" Width="200" HorizontalAlignment="Left"  
                             VerticalAlignment="Center" Min="0" Max="100" Grid.Column="1"  
                             Orientation="Horizontal"
 
            <telerik:LinearScale.Label> 
                <telerik:LabelProperties Offset="0" Location="Outside" > 
                </telerik:LabelProperties> 
                 
            </telerik:LinearScale.Label> 
 
                <telerik:RangeList> 
 
                <telerik:LinearRange x:Name="lrQtyLow2"  
                                     StartWidth="0.05" 
                                     EndWidth="0.05" 
                                     Location="OverCenter" 
                                     Background="Red" 
                                     BorderBrush="#7FFFFFFF" Min="0" Max="25"/> 
                <telerik:LinearRange x:Name="lrQtymid2"  
                                     StartWidth="0.05" 
                                     EndWidth="0.05" 
                                     Location="OverCenter" 
                                     Background="LightGreen" 
                                     BorderBrush="#7FFFFFFF" Min="25" Max="75"/> 
                <telerik:LinearRange x:Name="lrQtyhigh2"  
                                     StartWidth="0.05" 
                                     EndWidth="0.05" 
                                     Location="OverCenter" 
                                     Background="Green" 
                                     BorderBrush="#7FFFFFFF" Min="75" Max="100"/> 
            </telerik:RangeList> 
 
            <telerik:IndicatorList> 
                <telerik:Marker x:Name="mQty2" 
                                RelativeHeight="0.075" 
                                RelativeWidth="0.075" 
                                IsAnimated="True" 
                                Value="50" 
                                Location="OverCenter" 
                                Background="Blue"/> 
            </telerik:IndicatorList> 
        </telerik:LinearScale> 
   </Grid> 
</Window> 
 

I have also attached a screen shot showing both the Vertical and Horizonatl LInearScales.

Is this the expected behavior?  Have I incorrectly defined or missed something in setting up the Horizontal LinearScale?  Or is there a different/better way to accomplish the desired Horizontal LinearScale?

Thanks for any additional information,
Keith
Andrey
Telerik team
 answered on 11 Jun 2010
0 answers
119 views

We are proud to announce the immediate availability of our Q2 2010 Preview (Beta, version 2010.2 609) release.

It contains the new controls, features and tools we plan to officially announce in July.

RadControls for WPF - Download Trial Version and over 300 examples


The download files have been marked with Q2 2010 Beta. You can also download a licensed version under your accounts.

Over 300 updated online demos can be accessed at:

RadControls for WPF Online demos

For more details go to the official blog post at:
http://blogs.telerik.com/blogs/posts/10-06-11/q2_2010_beta_of_telerik_xaml_controls_is_here.aspx
Telerik Admin
Top achievements
Rank 1
Iron
 asked on 11 Jun 2010
1 answer
127 views
Hi,
When I add GridView to PanelBarItem and set columns width more than window width, then panelBar is out of window and scroll bar in GridView don't show.
 How can I fix this ?

<Window x:Class="gridViewScroll.Window1" 
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
    Title="Window1" Height="321" Width="551" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
    <Grid> 
        <telerik:RadPanelBar Name="radPanelBar1" > 
            <telerik:RadPanelBarItem Header="HeaderBar1" IsExpanded="True"
                    <telerik:RadGridView Margin="0,0,0,1" Name="radGridView1" ShowInsertRow="True" ShowGroupPanel="False" CanUserFreezeColumns="False" RowIndicatorVisibility="Collapsed"
                    <telerik:RadGridView.Columns> 
                         <telerik:GridViewColumn UniqueName="{x:Null}" Header="Header1" Width="180"/> 
                        <telerik:GridViewColumn UniqueName="{x:Null}" Header="Header2" Width="180"/> 
                        <telerik:GridViewColumn UniqueName="{x:Null}" Header="Header3" Width="180"/> 
                        <telerik:GridViewColumn UniqueName="{x:Null}" Header="Header4" Width="180"/> 
                    </telerik:RadGridView.Columns> 
                </telerik:RadGridView> 
            </telerik:RadPanelBarItem> 
            <telerik:RadPanelBarItem Header="HeaderBar2"></telerik:RadPanelBarItem> 
 
        </telerik:RadPanelBar> 
    </Grid> 
</Window> 
 
Andrew L
Top achievements
Rank 1
 answered on 11 Jun 2010
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?