Telerik Forums
UI for WPF Forum
2 answers
105 views
I have a xaml file that I have bound a gridviewdatacolum width (GridViewLength) to an app.config file.  I have made the config setting a double, so the width in the xaml is expecting a converter.  It looks like one is built in, but it does not implement IValueConverter.  Am I missing something, or do I have to write my own converter?  If not, can I get an example of how to use the GridViewLengthConverter?

Thanks,

Anthony.
anthony
Top achievements
Rank 1
 answered on 01 Feb 2011
1 answer
159 views
Hello,

I have a RadGridView to which I have applied various styles/templates.  How can I style the cells in the indented columns for rows that are within a Group?  I still have a residual border for which I simply cannot find the style.

I have attached a screen shot for reference. 

Thanks!
Vanya Pavlova
Telerik team
 answered on 01 Feb 2011
3 answers
114 views
Hi guys,

I see the Silverlight version supports this functionality, the user can reorder tabs by dragging.  When do you plan on porting this over to WPF?
Nikolay
Telerik team
 answered on 01 Feb 2011
1 answer
193 views
Hi,

I am using a RadGridView and a DataPager.
My requirement is that i need to customize the DataPager to include a RadComboBox to update the page size of the Pager.

Please guide me how I can put a combo box inside the datapager template and on change of its value how i can update the page size of data pager.

Thanks.
Veselin Vasilev
Telerik team
 answered on 01 Feb 2011
1 answer
114 views
I have the following control defined in a simple Grid control:

<telerik:RadNumericUpDown x:Name="TotalTimeSpent" Grid.Column="1" Grid.Row="1" Focusable="True" LargeChange="1.0" SmallChange="0.1" Value="0.1" Maximum="24.0" Minimum="0.0" TabIndex="1" UpdateValueEvent="PropertyChanged" ValueFormat="Numeric" />

Note that I have specified a TabIndex of 1.  However when I tab through the UIElemets in the Window the RadNumericUpDown is always last.  I have discovered that the template TextBox has a TabIndex of 2147483647 causing this behavior.  As a work around I do this: 

TextBox totalTimeSpent = TotallTimeSpent.FindChildByType<TextBox>() as TextBox;
 
if (totalTimeSpent != null)
{
    totalTimeSpent .TabIndex = TotalTimeSpent .TabIndex;
}

in the Loaded event.  The result is as if the TabIndex was propagated to the templated TextBox.

 
Konstantina
Telerik team
 answered on 01 Feb 2011
1 answer
67 views
 My requirement is as follows:

I have a table of similar format -

<Id> <Name>

where I want to have the fields under 'Id' column as read-only, while those under 'Name' would be editable. How to achieve this?
Milan
Telerik team
 answered on 01 Feb 2011
1 answer
90 views
I am using the timeline view. when the appointemt start is less then the first thay of the view, the rendered appointmenitem as wrong end day

For exemple, I add a appointment with start = 24/01/2011 and end = 29/01/2011. when I set the the scheduelerview in the day 27/01/2011 I will see one appoint that start = 27/01/2011 and end = 31/01/2011. I think this is not right...

Hristo
Telerik team
 answered on 01 Feb 2011
1 answer
118 views
Both the RadScheduler and RadScheduleView controls are included in the installation package; but, I don't see any mention of the RadScheduleView in the "RadControls For WPF Documentation." Is that new documentation available now or will it be available soon? Thanks ... George
Hristo
Telerik team
 answered on 01 Feb 2011
1 answer
109 views
Hi,

How do i make the cell readonly while in edit mode but not when the user inserts a new row?

thanks
Maya
Telerik team
 answered on 01 Feb 2011
2 answers
155 views
Hello,

I have a requirement where I want to highlight a for x seconds when the object bound to a row is in certain state.I am using a datatrigger together with a coloranimation for this purpose. When the condition is met, I trigger the storyboard action.  Below is the xaml. The problem I am facing is when I scroll the animation seems to be carrying to other rows which do not satisfy the condition. I have enabled row virtualization. This seems something to do with recycling the row containers ? Any help is greatly appreciated.

 <Style x:Key="test" TargetType="{x:Type telerikGridView:GridViewRow}">
            <Setter Property="Background" Value="White"/>
            <Style.Triggers>
                <DataTrigger Value="true">
                    <DataTrigger.Binding>
                        <MultiBinding Mode="OneWay" Converter="{StaticResource backgroundConverter}">
                            <Binding Path="FirstName"/>
                            <Binding Path="LastName"/>
                        </MultiBinding>
                    </DataTrigger.Binding>
                    <DataTrigger.EnterActions>
                        <BeginStoryboard>
                            <Storyboard>
                                <ColorAnimationUsingKeyFrames AutoReverse="True"  BeginTime="00:00:00" Duration="00:00:5"                                                               Storyboard.TargetProperty="(Control.Background).(SolidColorBrush.Color)">
                                    <LinearColorKeyFrame Value="Green" KeyTime="00:00:.5" />
                                </ColorAnimationUsingKeyFrames>
                            </Storyboard>
                        </BeginStoryboard>
                    </DataTrigger.EnterActions>
                </DataTrigger>
            </Style.Triggers>
        </Style>

Bhargava
Top achievements
Rank 1
 answered on 31 Jan 2011
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?