Telerik Forums
UI for WPF Forum
2 answers
143 views
Hi,

Is there a way i can set the radcarousel so  my items scroll vertically?  

Thanks!

Bill
Bill Anderson
Top achievements
Rank 1
 answered on 24 May 2011
1 answer
100 views
Hello
            I have a context menu in my gridview, and i need when user do right click on grid view column then i want to select that pertiular column, how can i do it in telerik grid view? What type of event i can capture to do this or is there any another way to do this?
Vanya Pavlova
Telerik team
 answered on 24 May 2011
1 answer
103 views
I have spent a few hours trying to figure out how to find a combobox in myWPF Gridview cell. I need to find it after gridview row is bound. There are no examples out there. It needs to happen in code behind Can anybody help? This is really driving me nuts.
Dimitrina
Telerik team
 answered on 23 May 2011
1 answer
105 views
I have a list of items that are generated based on user selections and I would like to display them on a timebar. I did create a converter to convert from my item to a RadLinearSparkline, but I can not figure out how to attach this Observable collection to display on the RadTimeBar. Is it only possible in the code behind?
Datafyer
Top achievements
Rank 1
Veteran
 answered on 23 May 2011
6 answers
470 views
Hey all,

I am writing an installer. It has a list of commands to execute and I need to show the progress.  I have a quite complex application that I am really using, so I created a sample app.  At first I was using the regular .NET 4 WPF DataGrid, but the .NET 4 DataGrid just wan't behaving stable.  See my recent post on MSND: http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/e4eeb10b-8b27-4b26-a435-baa0ae4ea47a/

Anyway, my company has licensed Telerik, I was told, so I thought I would try the Telerik GridView.

I replaced the DataGrid with the Telerik GridView but I can't really even get started because the SelectedItem is not changing when the bound value changes.  It is a readonly bound value and I have it set to mode=oneway.  While debugging the NotifyPropertyChanged("CurrentCommand") is properly called.  This is one part that was working fine with the DataGrid.

Here is my sample app: DataGridExecutionListWithTelerik.zip

My overall goal is to Execute each command.  I must also do the following:
1. Show a progress spinner (which isn't in my sample but is working in my actual app) on the current item.
2. There are so many commands, there is scrolling.  So when it reaches the commands not visible, the GridView should scroll (I am using ScrollIntoView).  Then I need current command inprogress to always be visible.  When finished the item should stay scrolled to the bottom.

I need the SelectedItem to change when it changes in my ViewModel so the event fires so the ScrollIntoView function can be called.
Dimitrina
Telerik team
 answered on 23 May 2011
1 answer
213 views
Hi,
I am using RadGrid with 5 columns, in which one of the column hold Button. Click event of the button is binded using Command using MVVM model .eg(MyButtonCommand). when i click this button i need to show the RowDetailsTemplate. RowDetailsTemplate shows the some information about the row, but i don't have control to bring the Rowdetails when i click the button.

Is there anyway that i can show the RowDetails based on button inside the grid?
Adam Marshall
Top achievements
Rank 1
 answered on 23 May 2011
2 answers
122 views
Hi,

Is it possible to modify the appearance of the BulletGraph QualitativeRanges and/or FeaturedMeasure?
I would like to add gradient shading.

  • WPF version:  3.0.6920.4902
            (as per http://msdn.microsoft.com/en-us/library/aa349641.aspx)
  • OS:  Windows 7 Enterprise 64-bit
  • exact browser version:  IE9 v9.0.8112.16421
  • exact version of the Telerik product:  RadControls for WPF v2011.1.419.40
  • preferred programming language (VB.NET or C#):  C#


  • Thank you,
    - Martin
    Martin
    Top achievements
    Rank 1
     answered on 21 May 2011
    4 answers
    516 views
    Hi,

    I am using a RadTreeListView and would like to change template of the row. I have two requirements.
    1) Change expander to plusminus
    2) Change control template of the rows

    I am able to do item 1, by changing presentation mode in HierarchyExpandButtonStyle. It works fine until I try to create a control template for TreeListViewRow. I dont have to change anything to completely mess up the expander button. Even before making any changing to the control template of the rows, as soon as I scroll up and down, each row has a minus sign regardless of whether it is a parent item or not.

    Again, to reproduce, please follow these steps.
    1) Add the following styles to RadTreeListView.....a) HierarchyExpandButtonStyle  b) HeaderRowStyle   and c) RowStyle
    2) You dont have to change anything in any of the styles except the Hierarchy one. Just edit current control template of the RowStyle.
    3) Scroll up and down a couple time and you should see the expander button all over the place.

    I want to edit the row template to do the following. If there is another quick way to do these please let me know
    1) Hide PART_IndicatorPresenter
    2) Hide PART_IndentPresenter
    3) Prevent user from selecting a cell and hence not showing a black border around it. Selection of the whole row is permitted.

    Please help!
    Thank you for your time.
    Vikas

    
    
    Vikas
    Top achievements
    Rank 1
     answered on 20 May 2011
    2 answers
    227 views
    I'd like to respond to the enter key when a row is highlighted.  i.e. select the row using the arrow keys, then hit enter and essentially duplicate the functionality of the doubleclick action grabbing the row.datacontext like so:

    private void GridViewImportTransactions_MouseDoubleClick(object sender, MouseButtonEventArgs e)
            {
                FrameworkElement originalSender = e.OriginalSource as FrameworkElement;
                if (originalSender != null)
                {
                    var row = originalSender.ParentOfType<Telerik.Windows.Controls.GridView.GridViewRow>();
                    if (row != null)
                    {
                        //MessageBox.Show("The double-clicked row is " + ((PacerImportTransaction)row.DataContext).ID);
                        RawDataWindow _rawDataWindow = new RawDataWindow(((PacerImportTransaction)row.DataContext));
                        _rawDataWindow.ShowDialog();
                    }
                }
      
            }

    how do I do that?

    Jonathan
    Jonathan
    Top achievements
    Rank 1
     answered on 20 May 2011
    7 answers
    658 views
    Hi,

    We have just downloaded the latest release (2011 Q1 .NET 4.0), however intellisense cannot find RichTextBox. The reference to Telerik.Windows.Controls.dll (version 2011.1.315.40) is already added.

    Error in Visual Studio 2011:
    The tag 'RadRichTextBox' does not exist in XML namespace 'http://schemas.telerik.com/2008/xaml/presentation'.


    Please advice. Thanks!
    Joel
    Top achievements
    Rank 1
     answered on 20 May 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?