Telerik Forums
UI for WPF Forum
16 answers
362 views
Hi,

I have html document(xyz.html),Under click event i want to open PDF file from html Document using Telerik.

Please let me know how can I proceed.

Regards,
Ranjith
Runjith
Top achievements
Rank 2
 answered on 22 Sep 2014
1 answer
318 views
I have been using Telerik GridView component (version 2014.2.729.45). I need to handle cell change event. Following events are fired consecutively:

1. Cell Validating
2. Cell Validated
3. Cell Edit Ended
4. Row Edit Ended
5. Cell Validating
6. Cell Validated
7. Cell Edit Ended
8. Row Edit Ended

Why these events are fired twice? Is this a bug?
Dimitrina
Telerik team
 answered on 19 Sep 2014
3 answers
199 views
We want to use RadMaskedDateTimeInput to let the user enter TimeSpans fo more than 24 hours.
For example 25 hours should be displayed and entered as

25:00:00  or   01:01:00:00 (one day and one hour)

using a "HH:mm:ss" or "dd:HH:mm:ss" mask does not work! 
Milena
Telerik team
 answered on 19 Sep 2014
12 answers
625 views
If I replace the RadAutoCompleteBox with a normal wpf textbox I can set focus in event OnLoaded with method myTextBox.Focus();
her is the code with the RadAutoCompleteBox that is not working:

<Window x:Class="Propertydesigner.Window1"
        xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls"
        xmlns:controls="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Input"
        Title="Window1" Height="300" Width="300" Loaded="Window1_OnLoaded" >
    <Grid>
        <telerik:RadBusyIndicator Grid.Row="1"  IsIndeterminate="True">
            <Grid HorizontalAlignment="Stretch" Margin="5">
                <Grid.RowDefinitions>
                    <RowDefinition Height="Auto" />
                    <RowDefinition Height="*"/>
                </Grid.RowDefinitions>
 
                <StackPanel>
                    <TextBlock Text="Enter a document name" Margin="0 0 0 5"/>
                    <controls:RadAutoCompleteBox  x:Name="SearchForDocuments"
                         DisplayMemberPath ="Name"
                         SelectionMode="Single"
                         TextSearchMode="Contains"                   
                         HorizontalAlignment="Stretch"
                         Margin="0 0 0 3"/>
                </StackPanel>
 
                <StackPanel Grid.Row="2"
                    Orientation="Horizontal"
                    HorizontalAlignment="Right"
                    VerticalAlignment="Center"
                    Margin="0 10 0 0">
                    <telerik:RadButton Content="OK"  Width="70" Margin="0 0 10 0" />
                    <telerik:RadButton Content="Cancel" Width="70"/>
                </StackPanel>
            </Grid>
        </telerik:RadBusyIndicator>
    </Grid>
</Window>


  private void Window1_OnLoaded(object sender, RoutedEventArgs e)
        {
            SearchForDocuments.Focus();
        }


Nencho
Telerik team
 answered on 19 Sep 2014
5 answers
127 views
Hello,

I need to Populate current date in my telerik datepicker control as soon as i hit F3 key. How can i achieve this in wpf telerik datepicker?

Thanks,

Abdi
Kalin
Telerik team
 answered on 19 Sep 2014
0 answers
124 views
Hi Telerik Team,
I have a ContextMenu on a GridView where it will be opened on MouseLeftButtonClick, from here the Copy and Paste menu will invoke a copy and paste comman programmatically I've tried sample from the online documentation but I have no success. Any idea? 
Juzailie
Top achievements
Rank 2
 asked on 19 Sep 2014
1 answer
122 views
Hello, 

Below is a part of the template of CollectionEditor. I've added a new button named "ButtonClose" in to the footer of the collection editor. What should I do in code behind to make the collection editor close? Simply change the visibility?



<Border x:Name="FooterPanel_Background" Grid.Row="3" BorderBrush="{StaticResource ControlOuterBorder}" BorderThickness="0,1,0,0"  Grid.ColumnSpan="2" Background="{StaticResource CollectionEditor_FooterPanel_Background}">
                            <Grid>
                                <StackPanel Orientation="Horizontal" HorizontalAlignment="Left">
                                    <telerik:RadButton IsEnabled="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=IsReadOnly, Converter={StaticResource InvertedBooleanConverter}}" 
                                                       MinWidth="48"  MinHeight="21"  Margin="4,6,4,7" 
                                                       telerik:StyleManager.Theme="{StaticResource Theme}" 
                                                       telerik:LocalizationManager.ResourceKey="CollectionEditorAdd"
                                                       Command="{x:Static propertyGrid:CollectionEditorCommands.AddNew}"/>
                                    <telerik:RadButton IsEnabled="{Binding RelativeSource={RelativeSource TemplatedParent}, Path=IsReadOnly, Converter={StaticResource InvertedBooleanConverter}}" 
                                                       MinWidth="48" MinHeight="21"  Margin="0,6,4,7" 
                                                       telerik:StyleManager.Theme="{StaticResource Theme}" 
                                                       telerik:LocalizationManager.ResourceKey="CollectionEditorRemove"
                                                       Command="{x:Static propertyGrid:CollectionEditorCommands.Delete}"/>
                                    <telerik:RadButton MinWidth="48" MinHeight="21"  Margin="0,6,4,7" Name="ButtonClose"
                                                       telerik:StyleManager.Theme="{StaticResource Theme}" 
                                                       Content="Close"
                                                       Click="ButtonClose_Click"/>
                                </StackPanel>
                                <Thumb x:Name="PART_ResizeThumb" Style="{StaticResource CollectionEditorGripperStyle}" Visibility="{TemplateBinding ResizeGripperVisibility}"/>
                            </Grid>
                        </Border>
Dimitrina
Telerik team
 answered on 19 Sep 2014
3 answers
77 views
When draging a toolboxitem from the toolbox gallery into the diagram is it possible to automatically open the SettingsPane ?

I have the following scenario: The user drags components from the toolbox into the diagram , the components have a few mandatory properties that needs to be set in its business object. My strategy is to put a form for the input of these properties in the SettingsPane and have this open whenever a new component is dropped into the diagram.

Petar Mladenov
Telerik team
 answered on 19 Sep 2014
1 answer
91 views
Hi,

I have a propertygrid with dynamically generated property definitions. I am currently setting the EditorTemplate for each PropertyDefinition at run time.
The issue I am facing is, when I use tab key to navigate from one row to another with the focus on the template, the next PropertyDefinition is not getting selected.
FYI, I used the keyboard navigation support for tabbing. This works fine on AutoGenerated columns but not on custom columns.

Thanks and Regards,
Nagarajan B P
Dimitrina
Telerik team
 answered on 18 Sep 2014
3 answers
114 views
I have a comboBox on my page after this comboBox i have a Telerik:RadTabControl with 3 tabs.

Upon loading this particular window the 3 Tabs pf tje RadTabControl are disabled. If the change event of the comboBox when a value has been selected I want to enable the 3 tabs.

How do I do this?
Julian
Top achievements
Rank 1
 answered on 18 Sep 2014
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?