Telerik Forums
UI for WPF Forum
5 answers
125 views
Hi All,

We have created a sample application with 2013_Q2  Telerik version. Sample application code is as shown below,

======================Source Code=========================
<UserControl x:Class="WpfControlLibrary1.UserControl1"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" 
             xmlns:d="http://schemas.microsoft.com/expression/blend/2008" 
             xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation"
             mc:Ignorable="d">
    <Grid>
        <Grid>
            <telerik:RadBusyIndicator IsBusy="{Binding IsBusy}" Grid.Row="0" AutomationProperties.Name="Testing45" >
                <StackPanel Orientation="Horizontal">
                    <TextBox Text="Hello" Name="Textbox12" Margin="10"/>
                    <Button Name="btn_Sandeep" Content="Display" Margin="10" />
                    <Label Name="lbl_lable" Content="Name" Margin="10"/>

                </StackPanel>
            </telerik:RadBusyIndicator>
        </Grid>
    </Grid>
</UserControl>
======================================================

Here coded we are crated test with CodedUITest. Playback is not working for none of the controls which are defined inside RadBusyIndicatior.

We are struck with this problem, please help us.

Regards,
Rajendar
Georgi
Telerik team
 answered on 23 Mar 2015
7 answers
677 views
Hi,
I have a DataForm with an EditTemplate where I have a multiline TextBox for editing text. I need to be able to insert new lines by pressing the Return Key. But when I do that, the Dataform gets Comitted. How can I prevent the DataForm's Commit Command to fire when users press the Return key inside the TextBox?
Yoan
Telerik team
 answered on 23 Mar 2015
4 answers
286 views
Hello
I would create my own RadComboBox (for adding features) and add a button at right (see capture)
I create a control inherit of RadComboBox :
public class MyComboBox : Telerik.Windows.Controls.RadComboBox
{
 
}
And associate style :
<Style x:Key="MyComboBoxStyle" TargetType="Controls:MyComboBox">
        <Setter Property="Template">
            <Setter.Value>
                <ControlTemplate TargetType="Controls:MyComboBox" >
                    <Grid x:Name="LayoutRoot">
                        <Grid.ColumnDefinitions>
                            <ColumnDefinition Width="*"/>
                            <ColumnDefinition Width="Auto"/>
                        </Grid.ColumnDefinitions>
 
                        <telerik:RadComboBox x:Name="PART_RadComboBox" Grid.Column="0"
                                             ItemsSource="{TemplateBinding ItemsSource}"
                                             SelectedItem="{TemplateBinding SelectedItem}"
                                             SelectedValue="{TemplateBinding SelectedValue}"
                                             DisplayMemberPath="{TemplateBinding DisplayMemberPath}"
                                             SelectedValuePath="{TemplateBinding SelectedValuePath}">
                        </telerik:RadComboBox>
 
                        <telerik:RadButton x:Name="PART_RadButton" Grid.Column="1" Content="+"/>
                    </Grid>
                </ControlTemplate>
            </Setter.Value>
        </Setter>
    </Style>
But MyComboBoxStyle is never use, I think RadComboBox always override my style because if I inherit System.Windows.ComboBox it's work.
Can you help me ? Or I must create UserControl and rewrite all DependencyProperty of RadComboBox ? 
Thanks in advance

PS : I use Telerik 2014 Q2.
Olivier
Top achievements
Rank 1
 answered on 23 Mar 2015
1 answer
163 views
Hi

we are using telerik tab control for wpf, with dropdown visible option. but problem is that It trims the items text if we  don't provide a width. or if e provide a width it completely omits one item.
please have a look at attached snapshots

<telerik:RadTabControl
                        Grid.Row="0"
                        DropDownDisplayMode="Visible"
                        ScrollMode="Item"
                        ItemsSource="{Binding Tabs}"
                        IsSynchronizedWithCurrentItem="True"
                        SelectedItem="{Binding SelectedType}"
                        ContentTemplate="{StaticResource AddTabContentTemplate}"
                        ItemTemplate="{StaticResource AddTabTemplate}"
                        Margin="4" />


<DataTemplate x:Key="AddTabTemplate">
           <Label Content="{Binding TypeName}" Width="150" HorizontalAlignment="Center" VerticalAlignment="Center"/>
</DataTemplate>
Martin Ivanov
Telerik team
 answered on 23 Mar 2015
7 answers
238 views
Hello Telerik

is it possible to add dynamical LineSeries to a RadCartesianChart-Control like in the SeriesProvider example from ChartView_WPF sdk project on Github, but each LineSeries with a own VerticalAxis?

Regards Uwe
Martin Ivanov
Telerik team
 answered on 23 Mar 2015
3 answers
123 views
Hi, 

I have a RadGridView with a custom template (as seen in the attachment).
How do I make the fields be editable?
Specifically, I want the description field to be editable when a user click on it. Just as a regular GridView with GridViewDataColumn.

Regards,
Daniel
Dimitrina
Telerik team
 answered on 21 Mar 2015
1 answer
174 views

Hi telerik support,

- In radgridview, when I apply grouping, some groups will automatically expand even if i scroll data (using EnableRowVirtualization = true). 
I just want to expand the group when i click header group. 
- Other hand, when grouping I select a record and update this record in code, the issues is UI not updated so i must use method ReBind().
(with same step, if i don't group data, everything is okay)
 - Please tell me some infomation about grouping in radgridview.

Thanks a lot.

Stefan
Telerik team
 answered on 21 Mar 2015
1 answer
70 views
Hi,
I was wondering if is it possible to avoiding cell resizing on click.

I would like to have the same cell style on read and edit method

Thanks
Vanya Pavlova
Telerik team
 answered on 21 Mar 2015
1 answer
197 views
I have a RadGridView that displays a list of dates.

Each date has a corresponding column called "Status" which is a ComboBox column.

My problem is that the ComboBox column list options vary depending upon the type of Date.

Is it possible to dynamically vary the itemsource per row based upon the date type?

I found this example which is close to what I need but am not sure if this can be implemented in the Telerik GridView.

Example: http://sekagra.com/wp/2013/04/dynamic-itemssource-for-combobox-in-a-datagrid/ 

Any assistance is Much Appreciated!

MikeF
Dimitrina
Telerik team
 answered on 21 Mar 2015
1 answer
582 views
Hi,

I have a requirement from our client to have a simple text search option available to them in the grid. I know that the grid filtering options cover most of this ground, but it really needs to be a search where they type and matches are made in the grid. 

We were able to do this when we used Infragistics by customizing the group panel and making it into our search area (we have no requirement to use grouping). See attached screenshot.

Any help you could give me would be greatly appreciated!
Dimitrina
Telerik team
 answered on 20 Mar 2015
Narrow your results
Selected tags
Tags
+? more
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Iron
Iron
Iron
Atul
Top achievements
Rank 1
Iron
Iron
Iron
Alexander
Top achievements
Rank 1
Veteran
Iron
Serkan
Top achievements
Rank 1
Iron
Shawn
Top achievements
Rank 1
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?