Telerik Forums
UI for WPF Forum
10 answers
488 views
Hey guys!

I have been having trouble getting my RadTreeView to deselect items that I have selected with multiselect.
What am I missing?

You can check out my sample project here
http://www.vbninja.com/TreeViewMultiSelect2.zip

Thanks
Scott
Petar Mladenov
Telerik team
 answered on 14 Dec 2010
3 answers
240 views
Hello everybody,
Is there any limit of records in the shapefile to load?
I´ve try the demo with my own shapefiles and it works ok if the file has few records.
Using a file with thousand of polygons it takes so long and most of times it crashes.
Is there any way of doing this?
Thank you ,
Esther
Andrey
Telerik team
 answered on 14 Dec 2010
1 answer
50 views
I have a two TreeView controls, one on the left side and one on the right side. The users should be able to drag items from the left side to the right side, but not the other way around. I have this functionality working, but I want to remove the visual elements (Drag Preview, Preview Line and Tooltip) when the drag is over the left side so that the users don't think that they are allowed to drag. 

I've tried setting the following:
IsDragPreviewEnabled="False"
IsDragTooltipEnabled="False"
IsDropPreviewLineEnabled="False"
But I still get all the visuals. I'd be fine with the visual queue that shows the red indicator saying no to the user.
Hristo
Telerik team
 answered on 14 Dec 2010
3 answers
92 views
Hi,
I have a question regarding the telerik RadGrid control. For the grid in my application I use InPlace editmode and the grid is empty on page load, so the user has to fill in some data. My problem is that when moving with tab key or with mouse in the grid there is no way to recognize the current cell, where the user is typing some data. I want to catch the event when the user fill out the current row of the grid and after that switch to the other row. How to make this possible?

I would appreciate your help. Thank you in advance.
Vlad
Telerik team
 answered on 14 Dec 2010
7 answers
110 views
Are there any varied examples of usage and/or documentation that explains how to use this? The docs online right now are very sparse. I know it is new, but I really need to figure out how to handle this properly. I'm getting all sorts of wacky results when I am trying things my users are asking for. ;)

For example, just doing a two color map from data that runs from 0-100 where red is triggered when at a value of 79 or less, anything 80 or above is green. That was a beast to figure out and even when I got it working I see that the color values are changed...it's trying to blend them just a bit. Now I'm being asked to show multiple shades of red depending on value, but all >80 are one green. Is that even possible, if so, how? I'm not quite und4erstanding the Step mode with Min and Max and TickMarkStep....Count mode does not seem to work for this at all.
Ves
Telerik team
 answered on 14 Dec 2010
1 answer
77 views
Hello Telerik Team,
                               First of all i should thank to telerik team.Becoz of read my thread.

We have one requirement in WPF. here we are using telerik rad control also.we have 10 fields.(model i will attached below)
In this project first i want to split two sections in entry window.
The first 5 fields design in left section.another 5 fields designed  in Right section.

 we also have enable/disable option in every field in setting page.

Enter Name    (Label box)

Text Box

Address

Text Box

Standard

Combo Box

Pin code

Text Box

Section

Text Box

State

Combo Box

Age

Text Box

Country

Combo Box


if i disable left section any field mean after that the right side of top field will come into left section of bottom field.

The model i will attached below.if i disable standard mean the layout will come

Enter Name    (label box)

Text Box

Pin code

Text Box

Section

Text Box

State

Combo Box

Age

Text Box

Country

Combo Box

Address

Text Box

 

 


is it possible?

if possible mean pls give me some coding regard my thread?

if not possible mean also give some ideas?
Maya
Telerik team
 answered on 14 Dec 2010
2 answers
228 views
Hello,

I am wondering if it is possible to use your control to gain drag & drop behaviour inside a wrapPanel with content generated from XML. It can be list of boxes(borders or grids). I found only samples of drag & drop inside treeview and listbox on you website. Do you have any sample that works in wrapPanel? Thank you in advance!
Vlad
Top achievements
Rank 1
 answered on 13 Dec 2010
7 answers
135 views
I'm having some trouble with the ComboBoxColumn. Here is my code:

<telerik:GridViewComboBoxColumn 
   DataMemberBinding="{Binding ActionID}" 
   Header="Action" UniqueName="ActionID" 
   SelectedValueMemberPath="ActionID"
   DisplayMemberPath="Name"
   ItemsSourceBinding="{Binding RelativeSource={RelativeSource Mode=FindAncestor,AncestorType=telerik:RadPane},Path=viewModel.References.ActionList}"/>

The rest of the columns are binding as expected. I was originally using ItemsSource and saw a thread that said to use ItemsSourceBinding instead. But neither one is working.

FYI: I'm also having trouble databinding several other gridviews using the same RelativeSource binding (but to different properties). I know my properties have items in them. I can see it when I debug, but the binding just isn't working for some of my controls. Other controls that are also bound using RelativeSource are working.

Is there something wrong with my comboBoxColumn or is there a limit on how many RelativeSource bindings I can use?
Maya
Telerik team
 answered on 13 Dec 2010
14 answers
313 views
Hi

Since I've updated to the latest release of the Telerik components, all the items in my Outlookbar are minimized. I've set the ActiveItemsMaxCount to 99 but this had no effect. How do I get the Items to be active?

Thank you
Viktor Tsvetkov
Telerik team
 answered on 13 Dec 2010
7 answers
264 views
Hello,
I´m want to be able to multiselect in a ComboBox and therefore uses a  SelectionBoxTemplate. But there is a strange problem.
<totally:RadComboBox  Grid.Column="1" Grid.Row="0" Grid.ColumnSpan="3" Name="StatusarComboBox" HorizontalAlignment="Stretch" 
                      ItemsSource="{Binding ARStatusar}" IsTextSearchEnabled="False" MaxWidth="190" > 
                    <totally:RadComboBox.ItemTemplate> 
                        <DataTemplate> 
                            <CheckBox IsChecked="{Binding IsChecked, Mode=TwoWay}" Content="{Binding Text}" /> 
                        </DataTemplate> 
                    </totally:RadComboBox.ItemTemplate> 
 
                    <totally:RadComboBox.SelectionBoxTemplate> 
                        <DataTemplate> 
                            <TextBlock Text="{Binding Owner.CheckedItems, Converter= StaticResource ValueConverter}, UpdateSourceTrigger=PropertyChanged}"/> 
                        </DataTemplate> 
                    </totally:RadComboBox.SelectionBoxTemplate> 
                </totally:RadComboBox> 

The comma separated text returned from the ValueConverter that shows the selected items does not always update. Only mouse clicks sometime updates the text. And after it starts working, it seems to always work. It also seems to always work when leaving the ComboBox using enter.

I´ve used this example:
http://www.telerik.com/community/forums/silverlight/combobox/multiselect-option-in-combo-box.aspx

Any ideas to this strange behavour? I want to be able to only use mouse clicks.

Best regards,
Anna
Matthew
Top achievements
Rank 1
 answered on 13 Dec 2010
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?