or
<
telerik:RadGridView
Name
=
"dgvBreaks"
ShowGroupPanel
=
"False"
Margin
=
"0,0,0,53"
AutoGenerateColumns
=
"False"
SelectionUnit
=
"Cell"
>
<
telerik:RadGridView.Columns
>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding Price}"
Header
=
"Price"
Width
=
"120"
IsReadOnly
=
"True"
/>
<
telerik:GridViewCheckBoxColumn
DataMemberBinding
=
"{Binding MatchUs}"
Header
=
"Match Us"
AutoSelectOnEdit
=
"True"
EditTriggers
=
"CellClick"
/>
<
telerik:GridViewCheckBoxColumn
DataMemberBinding
=
"{Binding MatchThem}"
Header
=
"Match Them"
AutoSelectOnEdit
=
"True"
EditTriggers
=
"CellClick"
/>
</
telerik:RadGridView.Columns
>
</
telerik:RadGridView
>
I want to automate MVC application with coded UI test (VSTS
2010) and while doing automation Rad grid control creates problems. At the time
of recording what are the operations we have performed all those are recorded
very well but at the time of executing recorded script thrown small message
window with message “an error occurred” and script is not moved further from
that point.
Please guide me how to automate below operations on radgrid
with the help of coded UI
Dim
radPieChart1
As
New
RadPieChart()
Dim
series
As
New
PieSeries()
series.DataPoints.Add(
New
PieDataPoint()
With
{.Value = 100})
series.DataPoints.Add(
New
PieDataPoint()
With
{.Value = 35})
series.DataPoints.Add(
New
PieDataPoint()
With
{.Value = 15, .OffsetFromCenter = 0.3, .IsSelected =
True
})
radPieChart1.Series.Add(series)
LayoutQ4.Children.Add(radPieChart1)
Hi,
How can I apply any of built in application theme (for example Windows7) to my application to see it on design time for example in blend.
Now I am using this:
StyleManager.ApplicationTheme = new Windows7Theme();
And it is working on run time but of course not in designer.
I've got a listBox initialised with the following: lbxFunction.ItemsSource = Enum.GetValues(typeof(ChartAggregateFunction)); How do I disable certain ListBox items? I tried: ((RadListBoxItem)lbxFunction.Items[0]).IsEnabled = false; I get an error. Any solutions will be appreciated.