Telerik Forums
UI for WPF Forum
1 answer
216 views
Greetings,

I am trying to customize the background of the RadGauge control. Ironically, I stumbled upon Bill's unanswered question here: http://www.telerik.com/community/forums/wpf/gauges/radguage-background.aspx#761772

I am having the exact same problem. How do you replace the default red/orange with a Brush?

Thank you,
Chad Campbell
Andrey
Telerik team
 answered on 12 Mar 2009
1 answer
115 views
Hello,

I am trying to figure out how to use the RadGuage control. Currently, I am trying to just change the Background of the gauge. The red/orange colors do not work with my application. How do I replace the default red/orange background with an ImageBrush?

The templates in the documentation found here (http://www.telerik.com/help/wpf/radial-gauge-customizing-appearance.html) do not seem to work. For instance, when I use the templates, the values disappear.

Thank you!
Andrey
Telerik team
 answered on 11 Mar 2009
1 answer
118 views
Can someone post the code to Databind the WPF RadGrid with an OpenAccess DataProvider?

I cannot get anything to work!
Jordan
Telerik team
 answered on 10 Mar 2009
1 answer
36 views
I am unable to find the support for the right hand Y axis, is it there? :)
Vladimir Milev
Telerik team
 answered on 10 Mar 2009
2 answers
252 views
Hi,
is there a way to disable the virtualization?
I need to perform calculations on rows that don't exist in the virtualizing panel.

Thanks,
Tal
Tal
Top achievements
Rank 1
 answered on 10 Mar 2009
1 answer
163 views
Hello,
Is it possible to have a checkbox on a GridViewGroupRow?  What I need to do is when the grid is grouped togeter (by a date as example) the user needs to check a checkbox on the group row which will check all rows within that group as completed.  Is something like that possible?

Thanks,
Nate
Milan
Telerik team
 answered on 09 Mar 2009
1 answer
106 views
Hi,

We are in process to evaluate the WPF treeview controls.
We need to applyOffice 2007 theme to the treeview control, how can we apply that.

If it is possible then how can i get the Office 2007 theme treeview.

Thanks,

Regards
Manoj
Nikolay
Telerik team
 answered on 09 Mar 2009
3 answers
97 views
Hi,
Can you show me the example how to use  Quick start frame( in  homepage) for creating  main page with menu on it?
Thank you
Jeewan Thapa
 
Nikolay
Telerik team
 answered on 09 Mar 2009
1 answer
118 views
Hi,

I would like to bind Rad WPF grid to hierarchical source, let say it is NorthWind DB(Customers, Orders, Orders Details):

1)  Using Linq it doesn't work at all:

            NorthWindDataContext db = new NorthWindDataContext();

            var query = from customer in db.Customers
                        select customer;

            this.radGridView1.AutoGenerateHierarchyFromDataSet = true;
            this.radGridView1.ItemsSource = query;

It seems that you dont support Linq

2) Here situation is the same, but when remove row: this.radGridView1.AutoGenerateHierarchyFromDataSet = true; only Customers data appears without hierarchy:

            DataSet dataSet = dbHelper.getHierarchicalDataSetUsingSQLConnection();
            this.radGridView1.AutoGenerateHierarchyFromDataSet = true;
            this.radGridView1.ItemsSource = ((DataTable)dataSet.Tables["Customers"]).DefaultView;

Strange is that this code works with few of your competitors. Any thoughts?

Greg
Nedyalko Nikolov
Telerik team
 answered on 07 Mar 2009
5 answers
259 views
Hi,

I have two set of objects, that are related in the following way:

public class MyObject1 
   private MyObject2 _o2 = new MyObject2() { Address = "CR" }; 
   public MyObject2 O2 
   { 
            get 
            { 
                return _o2; 
            } 
            set 
            { 
                _o2 = value; 
            } 
        } 
 
        public string Name 
        { 
            get
            set
        } 
    } 
 
    public class MyObject2 
    { 
        public string Address 
        { 
            get
            set
        } 
    } 
 


And I am binding the following set of properties on the grid:

<telerik:RadGridView Name="radGridView1" ItemsSource="{Binding}" AutoGenerateColumns="False"
            <telerik:RadGridView.Columns> 
                <telerik:GridViewDataColumn UniqueName="Name" IsGroupable="True" IsReadOnly="False" IsFilterable="True" HeaderText="Name" DataMemberBinding="{Binding Name}" /> 
                <telerik:GridViewDataColumn UniqueName="Address" IsGroupable="True" IsReadOnly="False" IsFilterable="True" DataMemberBinding="{Binding O2.Address}" HeaderText="Address" /> 
            </telerik:RadGridView.Columns> 
        </telerik:RadGridView> 

But after doing this binding the column binded to O2.Addres can´t be modified, grouped, filter. So I will like to know if this can be performed in some way.

Thanks







Celso
Top achievements
Rank 1
 answered on 06 Mar 2009
Narrow your results
Selected tags
Tags
+? more
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Will
Top achievements
Rank 2
Iron
Motti
Top achievements
Rank 1
Iron
Hester
Top achievements
Rank 1
Iron
Bob
Top achievements
Rank 3
Iron
Iron
Veteran
Thomas
Top achievements
Rank 2
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?