Telerik Forums
UI for WPF Forum
6 answers
114 views
Rad
Hi,
       In my WPF project i want to show 5 images while we mouse over the navigation button at the time of clicking the last image next set of 5 images needs to come please help me out in this issue.

Regards,
Rajini.
Rajini
Top achievements
Rank 1
 answered on 17 Oct 2011
8 answers
137 views

Hi,

I'm having a problem with setting the RadTreeViewItem's CheckState property through the ItemContainerStyle of the RadTreeView. Specifically, I receive an error message every time I try to edit the xaml in design mode with Blend (versions 3 or 4 RC) and nothing gets rendered on the design surfice. The message is:

"The member 'CheckState' is not recognized or is not accessible."

 I managed to reproduce the problem with a stripped-down version of the xaml:

<Window x:Class="WpfApplication18.MainWindow" x:Name="Window" 
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" 
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"   
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"               
        xmlns:telerikNavigation="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation" 
        mc:Ignorable="d"   
        Width="640" Height="480" 
        xmlns:sys="clr-namespace:System;assembly=mscorlib">  
 
    <Grid>   
        <telerikNavigation:RadTreeView IsOptionElementsEnabled="True">              
            <telerikNavigation:RadTreeView.Items> 
                <sys:String>Item 1</sys:String>               
                <sys:String>Item 2</sys:String>               
                <sys:String>Item 3</sys:String>      
            </telerikNavigation:RadTreeView.Items> 
            <telerikNavigation:RadTreeView.ItemContainerStyle> 
                <Style TargetType="{x:Type telerikNavigation:RadTreeViewItem}">  
                    <Setter Property="CheckState" Value="On" />   
                    
<Setter Property="OptionType" Value="CheckList" />                   
                </Style> 
            </telerikNavigation:RadTreeView.ItemContainerStyle> 
        </telerikNavigation:RadTreeView>         
    </Grid> 
</Window> 

It's only the CheckState property that's causing the problem (the OptionType property from the sample works fine).
Sources on the internet suggest tha an internal exception in the property 'setter' might be causing such behavior but that's just a clue.
Do you have any idea how I can get it working in Blend ??
Petar Mladenov
Telerik team
 answered on 17 Oct 2011
2 answers
89 views

HI There,

we need to know how to remove " Nested Operator Button"  from the Radfilter

any comments appreciated.

Regrads
DEE

Deepak
Top achievements
Rank 1
 answered on 17 Oct 2011
0 answers
61 views
Hi Support

I have basic form for inserting and updating data (I'm using EF4 for manipulating data) but I've problem with updating values of row after it just inserted, it change in the collection but not in DB. how can I fix it?

Thanks in advance
Mehri
Mehri
Top achievements
Rank 1
 asked on 17 Oct 2011
1 answer
154 views
Hi All,

Our requirement is to open multiple Telerik window control but it should not be like MDI window or another WPF window.

Something similar to Infragistics window control for WPF.

Is it possible?

Thanks
Miroslav Nedyalkov
Telerik team
 answered on 17 Oct 2011
1 answer
90 views
I have seen the posts about the Compass being displayed incorrectly when DPI is not 100%, so I checked and that is not my problem.  This just doesn't seem to me to be a problem that would need to be voted on to get it taken care of.  We were almost set to buy the product on Monday, and then I ran into this.  Please tell me it will be fixed. 

Compass Bug Illustration

Thanks in advance,
Steve

PS - Here's some additional information.  Apparently the control does not consider having the Windows 7 taskbar on the left of the screen, so on my main monitor, not only is it offset from the top, but also from the right.  Both my monitors are set at 1920x1080.
Miroslav Nedyalkov
Telerik team
 answered on 17 Oct 2011
4 answers
130 views
Hi how can i get whether the TreeListView node is expanded or collapsed in RowIsExpandedChanged event.

TreeListViewRow

 

ltvrNode = e.Row as TreeListViewRow;
ltvrNode.IsExpanded is returning false everytime.

When a user click on a node I need to find whether that node is expanded or collapsed.
Please help me

 

Manishkumar
Top achievements
Rank 1
 answered on 17 Oct 2011
1 answer
176 views
Does anyone know of an example of how to do smooth scrolling similiar to the Xceed grid with the RadGridView.

Basically what they do is allow you to sort filter and group without paging and just with the scroll bar.  Say you have 1 million records you can scroll through them without hitting the database for all the data.  It just gets the 200 at a time, you can set the value as well.  All you need to do is give it a Iqueryable and it does the rest. 

Can you do this with the RadGridView?

Bryan
Vlad
Telerik team
 answered on 17 Oct 2011
1 answer
225 views
Hi,
My requirement is to show the text over the map polygon at runtime.
From the xaml we can do this like:
<telerik:MapPolygon Points="56,-100 56,-108 48,-108 48,-100" Fill="Green" Stroke="Red"
                    StrokeThickness="4" CaptionLocation="52,-104">
            <telerik:MapPolygon.CaptionTemplate>
                <DataTemplate>
                    <Grid Background="Yellow">
                        <telerik:MapLayer.HotSpot="0.50.5">
                            <TextBlock Text="My Custom Text" />
                    </Grid>
                </DataTemplate>
            </telerik:MapPolygon.CaptionTemplate>
        </telerik:MapPolygon>

But from the code behind how we can do the same thing.

MapPolygon CreatePolygon(IEnumerable<Location> points, string areaName)
        {
            var polygon = new MapPolygon();
            polygon.Points = this.pins.Points;
            polygon.ToolTip = areaName;
            // also I want to set the area name over the MapPolygon
           
            return polygon;
        }
Andrey
Telerik team
 answered on 17 Oct 2011
12 answers
281 views
Hi,

We are developing a new application. One of the feature that we are planning is a floor plan interface with ability to place controls on the map, and we are evaluating whether the RadMap is the right module to use.

  1. The floor plan would be a single image, I figure this is possible by implement a custom ImageProvider
  2. The zoom-out level needs to be limited to when the image fills the window
  3. User need to be able to add new controls to the map, which can be a custom WPF user control, or a RadGauge. The control will be fixed at a map coordinate.
  4. User needs to be able to drag-n-drop any control to any place on the map, and also rotate the control. The new placement and angle will be remembered.
  5. User needs to be able to remove controls from the map (maybe through context menu on the control)

And hopefully 3-5 can be achieved through data-binding.

Is the RadMap module the right tool for what we needed? or is there some other control that would suite this scenario better?
Andrey
Telerik team
 answered on 17 Oct 2011
Narrow your results
Selected tags
Tags
+? more
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Anislav
Top achievements
Rank 6
Silver
Bronze
Bronze
Jianxian
Top achievements
Rank 1
Iron
Marco
Top achievements
Rank 3
Iron
Iron
Iron
Jim
Top achievements
Rank 2
Iron
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?