Telerik Forums
UI for WPF Forum
3 answers
289 views
I am using the Office2k7Black Theme on the Treeview.  It looks great, until it loses focus to another control.  Then the user cannot read what is selected because it is completely white.  I don't really want to restyle the whole thing, so it there something I can do to keep the selected look?  I have attached two pictures.  One shows the item selected, the next once I click on the item on the right and the treeview loses focus.
Petar Mladenov
Telerik team
 answered on 04 Jan 2011
1 answer
94 views
hi
        how many tab index  in rad rating?
bcoz i am inserting controls in xaml orderly. if i reach rating control  then press more times tab after that only goes another control?
i want if focus is in  rating after press tab it will goes next control? but i won't do  here why?

any suggession?
 
Petar Mladenov
Telerik team
 answered on 04 Jan 2011
1 answer
88 views
Hi
           i have one clarification.we are using telerik rad controls in our project.
My problem about tab index in radrating  control.
our layout design is having 25 fields.They are textbox,combobox,radiobuttons,etc...with only one radrating.
  3rd control is radrating in our layout..Here i am setting tab index in  starting 1 to 25 in orderly.

also set radrating  tabindex is 3.

i don't use mouse.working only tab.
if i put values in run time the tab will goes correctly.but finaly completed 25th field then CURSOR AGAIN COMES  Radrating  CONTROL.
That is my problem.here i want cursor in first field.

pls give me correct solution?
Petar Mladenov
Telerik team
 answered on 04 Jan 2011
7 answers
157 views
Hi...

How to set the FilterControlWidth as the grid column width.

The below code is not working for me.

 

protected void approvedGrid_ItemDataBound(object sender, GridItemEventArgs e)

 

{

 

if (e.Item is GridFilteringItem)

 

{

 

 

 

GridFilteringItem filteringItem = e.Item as GridFilteringItem;

 

 

TextBox box = filteringItem["mandatory"].Controls[0] as TextBox;

 

box.Width = approvedGrid.MasterTableView.Columns[2].ItemStyle.Width;

 

//approvedGrid.MasterTableView.Columns[2].FilterControlWidth = approvedGrid.MasterTableView.Columns[2].HeaderStyle.Width;

 

 

}

}

Vlad
Telerik team
 answered on 04 Jan 2011
2 answers
138 views
Sample screen shot attached. Is this possible to be done with RadCarousel? Any help would be appreciated.
Baliga
Top achievements
Rank 1
 answered on 04 Jan 2011
1 answer
46 views
Hi ,

I am using Telerik Radgrid in my WPF project and want to know that can i apply dependent sorting on three columns of my RadGrid ??
For eg : If i have 3 columns : CustomerName , CustomerId and CustomerCity.
Like the functionality we get in sql when we write ORDER BY (CustomerName , CustomerId and CustomerCity ) .

Thanks in advance !!!!!!!!
Veselin Vasilev
Telerik team
 answered on 04 Jan 2011
1 answer
106 views
Hi,

I am having problems with RadCombobox inside a RadWindow. The dropdownlist goes behind the window.  I am using the 11/10/2010 release of the wpf controls.

Here is the code.

Window1.xaml
<Window
   x:Class="Window1" x:Name="Window1"
   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
   xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
   xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
   xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" Width="300" Height="200" WindowStartupLocation="CenterScreen">
   <Grid>
      <Button Name="btn" Content="Press the Button" Margin="30"/>
   </Grid>
</Window>

Window.xaml.vb
Imports Telerik.Windows.Controls

Class Window1
   Public Sub New()

      ' This call is required by the Windows Form Designer.
      InitializeComponent()

   End Sub

   Private Sub btn_Click(ByVal sender As Object, ByVal e As System.Windows.RoutedEventArgs) Handles btn.Click
      Dim wnd As New Window2


      wnd.ShowDialog()
   End Sub
End Class


Window2.xaml
<telerik:RadWindow
   x:Class="Window2" x:Name="Window2"
   xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
   xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
   xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
   xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
   xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" WindowStartupLocation="CenterOwner">
   <Grid>
      <StackPanel>
         <telerik:RadComboBox Name="com1"/>
         <telerik:RadComboBox Name="com2"/>
         <telerik:RadComboBox Name="com3"/>
      </StackPanel>
   </Grid>
</telerik:RadWindow>

Window2.xaml.vb
Class Window2
   Public Sub New()

      ' This call is required by the Windows Form Designer.
      InitializeComponent()

      ' Add any initialization after the InitializeComponent() call.
      com1.Items.Add("pppp")
      com1.Items.Add("QQQQ")
      com1.Items.Add("TTTTT")
      com1.SelectedIndex = 0

      com2.Items.Add("aaaaa")
      com2.Items.Add("bbbbb")
      com2.Items.Add("ccccc")
      com2.SelectedIndex = 0

      com3.Items.Add("11111")
      com3.Items.Add("22222")
      com3.Items.Add("33333")
      com3.SelectedIndex = 0
   End Sub
End Class



Thanks,
Konstantina
Telerik team
 answered on 04 Jan 2011
3 answers
179 views
Hi,
Is it possible to apply a cusotm context menu to RadTreeListview like RadTreeView? I am trying this in WPF + MVVM.
Can you share a sample project of the same?
Vlad
Telerik team
 answered on 04 Jan 2011
3 answers
122 views
Hi,
Is it possible to apply a cusotm header to radtreeListview?
Can you share a sample project of the same?
Vanya Pavlova
Telerik team
 answered on 04 Jan 2011
3 answers
72 views

I have a deadline on the 31st of December, and this is the last telerik-related thing I need to fix in my program in order to get it approved, I would soooooo appreciate a quick answer, you have no idea. :)

When I add around 10 DataSeries (with 15 points in each) to a Chart, the Chart resizes itself several times and the entire animation is very slow. I am sure there's something I need to do before or after calling the following line on my IEnumerable of charts, but I can't figure out what it is.

I'd would be really grateful for an answer. 

myChart.DefaultView.ChartArea.DataSeries.AddRange( ... )

Evgeni "Zammy" Petrov
Telerik team
 answered on 04 Jan 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?