Telerik Forums
UI for WPF Forum
1 answer
53 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
94 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
114 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
80 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
244 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
147 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
316 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
267 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
5 answers
129 views
Hi,

I'd like to set my custom filter in datagrid with some values without opening filter pop-up.

As far as I understand for that purpose I have to call somehow method Prepare(GridViewBoundColumnBase gridViewColumn) of my filter to initialize my filter.

Can you please tell me or better show me, how can I clever handle such situation.

Thank u in advance,
Julian 
Veselin Vasilev
Telerik team
 answered on 13 Dec 2010
1 answer
277 views
Suppose you have the following definitions:
 
public enum Category { Spicy, Fat, Tasty, Expensive};
  
public class Dish
{
    public string Name {get; set;}
    public Category[] Categories {get; set;}
}

I show a collection of Dish objects in a RadGridView. As property Categories is a collection I concatenate the values into a single string, e.g. "Spicy, Fat". Now I would like to add some custom filtering behavior that makes it possible to this on the Categories column:
  • Show a sorted list of all the values in the Category enum (or perhaps only the values that are used by the Dish objects in the grid)
  • Use a CheckedList so that more than one value can be selected.
  • When more than one Category is used in the filter I want to see all items having at least one of the grades (i.e. an OR condition).
Example:
Grid content [Name: Categories]
- Filet Mignon: Expensive, Fat
- Sausage: Fat
- Thai Curry: Spicy, Tasty
 
If I select values Fat and Expensive I should see the rows for FiletMignon (matches both) and Sausage (matches Fat).
If I select values Spicy and Expensive I should see the rows for FiletMignon (matches Expensive) and ThaiCurry (matches Spicy).

I would be more than grateful for some help on this so thanks in advance!
 
Rossen Hristov
Telerik team
 answered on 13 Dec 2010
Narrow your results
Selected tags
Tags
GridView
General Discussions
Chart
RichTextBox
Docking
ScheduleView
ChartView
TreeView
Diagram
Map
ComboBox
TreeListView
Window
RibbonView and RibbonWindow
PropertyGrid
DragAndDrop
TabControl
TileView
Carousel
DataForm
PDFViewer
MaskedInput (Numeric, DateTime, Text, Currency)
AutoCompleteBox
DatePicker
Buttons
ListBox
GanttView
PivotGrid
Spreadsheet
Gauges
NumericUpDown
PanelBar
DateTimePicker
DataFilter
Menu
ContextMenu
TimeLine
Calendar
Installer and Visual Studio Extensions
ImageEditor
BusyIndicator
Expander
Slider
TileList
PersistenceFramework
DataPager
Styling
TimeBar
OutlookBar
TransitionControl
Book
FileDialogs
ToolBar
ColorPicker
TimePicker
SyntaxEditor
MultiColumnComboBox
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
DesktopAlert
WatermarkTextBox
BarCode
SpellChecker
DataServiceDataSource
EntityFrameworkDataSource
RadialMenu
ChartView3D
Data Virtualization
BreadCrumb
ProgressBar
Sparkline
LayoutControl
TabbedWindow
ToolTip
CloudUpload
ColorEditor
TreeMap and PivotMap
EntityFrameworkCoreDataSource (.Net Core)
HeatMap
Chat (Conversational UI)
VirtualizingWrapPanel
Calculator
NotifyIcon
TaskBoard
TimeSpanPicker
BulletGraph
Licensing
WebCam
CardView
DataBar
FilePathPicker
PasswordBox
Rating
SplashScreen
Accessibility
Callout
CollectionNavigator
Localization
AutoSuggestBox
VirtualKeyboard
HighlightTextBlock
Security
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Top users last month
Rob
Top achievements
Rank 3
Bronze
Iron
Iron
Sergii
Top achievements
Rank 1
Iron
Iron
Dedalus
Top achievements
Rank 1
Iron
Iron
Lan
Top achievements
Rank 1
Iron
Doug
Top achievements
Rank 1
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?