Telerik Forums
UI for WPF Forum
1 answer
128 views
I am unable to get the Unpin/Pin events to trigger on my RadPane.
Also the documentation mentions a "PaneStateChanged" event but I don't see that event anywhere.

We are using version 2011.3.1220.35 of the Telerik wpf controls. We are unable to upgrade at this time because we are getting ready to release.

Here is my xaml for the RadPane:
<telerikDocking:RadPane x:Name="FilterPanel" Header="Filters"
                        telerikDocking:RadDocking.SerializationTag="FilterPanel"
                        Background="Transparent"
                        CanUserClose="False" CanDockInDocumentHost="True" CanFloat="False"
                        telerikDocking:RadDocking.Unpin="FilterPanel_Unpin"
                        telerikDocking:RadDocking.Pin="FilterPanel_Pin"
                        DataContext="{Binding}"
                        ContextMenuTemplate="{DynamicResource FilterPaneContextMenuTemplate}"

Thank you for your help.

Tracy
Vladi
Telerik team
 answered on 05 Jul 2012
14 answers
425 views
Hi,

I've tried to use custom appointment calss similar to RadScheduler as described here but not successfull.

I see neither NewAppointment property in AppointmentCreatingEventArgs class nor BaseAppointmentCollection<IAppointment> in the RadScheduleView assembly.

What am I doing wrong?

Thanks,
Anatoly
Madan
Top achievements
Rank 1
 answered on 05 Jul 2012
3 answers
103 views
Is there a way to have a Hebrew calendar?
Pankaj
Top achievements
Rank 1
 answered on 05 Jul 2012
3 answers
167 views
I have a Grid with datacontext set to the VM working fine. The VM has a List<Item> and a many to many object Graph List<myReport> of Report/VisitItems.Item

In the detail grid view, the item field is set as gridviewcomboboxcolumn

 <telerik:RadGridView ShowGroupPanel="False" AutoGenerateColumns="False"    ItemsSource="{Binding Path=myReport.visititem}" CanUserInsertRows="True">
<
telerik:GridViewComboBoxColumn x:Name="cbItem" Header="Item Name" UniqueName="ItemName"               
                                EditTriggers="CellClick"
                                ItemsSource="{Binding ItemList}"
                                DisplayMemberPath="{Binding Path=Name}"
                                DataMemberBinding= "{Binding Path=myReport.VisitItem/Item}"
                                 >

however the gridviewcomboboxcolumn is not working, it is blank when loaded, and after selection and lost focus, it returns to blank.

anything wrong with the binding code? i am trying not to use code behind as I am using mvvmlight. Tks.
Neogeo
Top achievements
Rank 1
 answered on 05 Jul 2012
1 answer
141 views
I'm using the latest version of the Grid View and the PersistenceFramework.  When using the sample code for these two items (from the PersistenceFramework - GridView example) everything appears to work as expected, but this uses a ObjectDataProvider to provide the data.  (I'm following the MVVM pattern) Moving the data collection to an ObservableCollection<Customer> and setting the DataContext to this collection works correctly in the first instance, and grouping works correctly, but when I restart the application, the grouping is applied correctly, but the group header in the Group Panel is present but the text is missing.  Has anyone seen a similar problem, or have a clue why this is happening?

It may be worth noting, that I'm making use of the DisplayAttribute to set the column headings.  Also I have auto add columns turned off and adding the columns explicitly in code.

<telerik:RadGridView x:Name="RadGridView1" CanUserDeleteRows="False"
                      CanUserInsertRows="False"
                      EnableColumnVirtualization="False"
                      AutoExpandGroups="True"
                             AutoGenerateColumns="False"
                      
    RowIndicatorVisibility="Collapsed"
    RowHeight="20"
 
    Persistence:PersistenceManager.StorageId="RepoTradeSecurityListGridView"
                      
         ItemsSource="{Binding}"  VerticalAlignment="Stretch">
    <!--ItemsSource="{Binding Source={StaticResource customers}}"-->
    <telerik:RadGridView.Columns>
        <telerik:GridViewDataColumn                                           
                                    DataMemberBinding="{Binding CustomerID}"
                                    IsFilterable="False"
                                    IsCustomSortingEnabled="False"
                                    IsVisible="True"/>
        <telerik:GridViewDataColumn                                         
                                    DataMemberBinding="{Binding City}"
                                    IsFilterable="False"
                                    IsCustomSortingEnabled="False"
                                    IsVisible="True"/>               
    </telerik:RadGridView.Columns>
</telerik:RadGridView>
Nick
Telerik team
 answered on 05 Jul 2012
4 answers
312 views
Hello,

I've encountered two bugs (or oddities) with editing collections with propertygrid's collectioneditor:

1) If the main grid in PropertyGrid can be sorted as categorical or alphabetical, then it seems than CollectionEditor is always A-Z sorted (there's no button for sorting it categorically). Is there a workaround ?

2) CollectionEditor displays collection item names using addeditem.ToString(). Is there a way to bind a child item property to be it's display name in the collectioneditor ?

Thanks! 
AndrewRichards
Top achievements
Rank 1
 answered on 05 Jul 2012
1 answer
54 views
Book not available in PITS as a WPF control when Sugest new dialog is presented/There is no book or radbook in the Area dropdown list if WPF is selected.
Petar Mladenov
Telerik team
 answered on 05 Jul 2012
1 answer
144 views
What is the correct way to change tab strip placement in ToolWindow?  And how to add icon on ToolWindow?
Thanks.
Masha
Telerik team
 answered on 04 Jul 2012
3 answers
82 views
Hi,
I have the same problem that this thread http://www.telerik.com/community/forums/wpf/gridview/columngroups-do-not-display-when-set-by-code.aspx

How can i get the latest internal build 2011 Q3?

Thanks, for your support
Hristo
Telerik team
 answered on 04 Jul 2012
2 answers
135 views
Hi for all,

I have some problem with FilteringControl and RadGridView. I should implement this behavior: for example, when user press key 'Enter' on RadGridView's selected row I show message for him. But if user press 'Enter' in FilteringControl I should not do anything. Now it is not so (user press 'Enter' in FiletringControl's TextBox and then he will see message"Enter pressed"). I can not get access to events of FilteringControl to write "e.Handled = true;".
<telerik:RadGridView HorizontalAlignment="Left"
                     Name="radGridView"
                     AutoGenerateColumns="False"
                     PreviewKeyDown="radGridView_PreviewKeyDown"
                     VerticalAlignment="Top" Height="311" Width="503" >
    <telerik:RadGridView.Columns>
        <telerik:GridViewDataColumn Header="Name" DataMemberBinding="{Binding Path=Name, Mode=TwoWay}" />
    </telerik:RadGridView.Columns>
</telerik:RadGridView>
private void radGridView_PreviewKeyDown(object sender, KeyEventArgs e)
{
    if (e.Key == Key.Enter)
    {
        MessageBox.Show("Enter pressed");
    }
}
Peter
Top achievements
Rank 1
 answered on 04 Jul 2012
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?