Telerik Forums
UI for WPF Forum
3 answers
212 views
    Hello everyone, now I have put some pinpoints on the map(behind there are some custom objects named target), and I want the image of pinpoint to change  dynamically when some events occur, what should I do? Should I Use INotifyPropertyChanged or ObservableCollection (maybe this will not work because map will not refresh when image source property change)? Or should I not use pinpoint and instead use custom item directly?
    What's the best way to organize the items on map that can reflect the change of property(image) in real time? Thank you every much and wait for help! (Better If there are some sample codes)
Yb
Top achievements
Rank 1
 answered on 06 Dec 2013
8 answers
270 views
Hi 
I downloaded the latest version of teleric wpf components
I am using Expression Dark theme, but the RadComboBox caret brush set to black which make difficult to user to see it, Please let me know if i can change the caret brush.
I can change the caret brush for TextBox, but i need to do the same for RadComboBox.

Thanks ,
Akram
 

Don
Top achievements
Rank 1
 answered on 05 Dec 2013
0 answers
298 views
It is possible to create a horizontal line in word by entering a long line of dashes and then hitting return. Not only does this not work in the radrichtextbox, but horizontal lines do not appear when copy and pasted or when in an imported richtext document.
Clifford
Top achievements
Rank 1
 asked on 05 Dec 2013
0 answers
65 views
We are importing rich text documents into the radrichtextbox (verson 2013.3) and have issues with the first tab. In word, if the first line of a paragraph is outdented, then the first tab on the first line will will take the cursor to the indent point. Right now the first tab takes the cursor to a default tab position which is every half inch. Is this being addressed?
Clifford
Top achievements
Rank 1
 asked on 05 Dec 2013
4 answers
277 views
Good morning,
I am having a problem when using an in-line CellStyle to set a 'condiitonal' ToolTip. The scenario I'm dealing with boils down to a single column where some rows have a tool-tip and others do not. Initially when hovering over a cell with a tool-tip the tool-tip is displayed correctly. I then hover over a cell without a tool-tip and as expected no tool-tip is displayed; however, upon returning to a cell with a tool-tip the tool-tip is no longer displayed correctly. If you repeat the process the tool-tip will alternate between working and not working. Why are the rows with a tool-tip being affected by the rows without? Thanks in advance!

We are currently on the 2013.2 Telerik libraries.

Below is a code sample that illustrates the problem. First is the ViewModel that holds a simple collection of Model objects.

using System.Collections.ObjectModel;
using System.Windows;
 
namespace ConditionalColumnToolTip
{
    public class ViewModel
    {
        public ViewModel()
        {
            Models = new ObservableCollection<Model>
                {
                    new Model{ Name = "HasAToolTip", ToolTipVisibility = Visibility.Visible, ToolTipText = "tool tip text"},
                    new Model{ Name = "HasAToolTip", ToolTipVisibility = Visibility.Visible, ToolTipText = "tool tip text"},
                    new Model{ Name = "NoToolTip", ToolTipVisibility = Visibility.Collapsed },
                    new Model{ Name = "HasAToolTip", ToolTipVisibility = Visibility.Visible, ToolTipText = "tool tip text"},
                };
        }
 
        public ObservableCollection<Model> Models
        {
            get; set;
        }
    }
}

Next is the simple definition of the Model object.

using System.Windows;
 
namespace ConditionalColumnToolTip
{
    public class Model
    {
        public string Name
        {
            get; set;
        }
 
        public Visibility ToolTipVisibility
        {
            get; set;
        }
 
        public string ToolTipText
        {
            get; set;
        }
    }
}

I set the DataContext of my MainWindow.xaml to an instance of the ViewModel in the MainWindow.xaml.cs

using System.Windows;
 
namespace ConditionalColumnToolTip
{
    /// <summary>
    /// Interaction logic for MainWindow.xaml
    /// </summary>
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
 
            DataContext = new ViewModel();
        }
    }
}


And finally here is the XAML for the MainWindow.xaml that recreates the issue.

<Window x:Class="ConditionalColumnToolTip.MainWindow"
        xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.GridView"
        xmlns:vm="clr-namespace:ConditionalColumnToolTip"
        xmlns:gridView="clr-namespace:Telerik.Windows.Controls.GridView;assembly=Telerik.Windows.Controls.GridView"
        Title="MainWindow" Height="350" Width="525"
        mc:Ignorable="d" d:DataContext="{d:DesignInstance vm:ViewModel, IsDesignTimeCreatable=True}">
    <Grid>
         
        <telerik:RadGridView ItemsSource="{Binding Models}" AutoGenerateColumns="False">
            <telerik:RadGridView.Columns>
                 
                <telerik:GridViewDataColumn Header="TITLE" DataMemberBinding="{Binding Name}">
                    <telerik:GridViewColumn.CellStyle>
                         
                        <Style TargetType="{x:Type gridView:GridViewCell}" BasedOn="{StaticResource {x:Type gridView:GridViewCell}}">
                            <Setter Property="ToolTip">
                                <Setter.Value>
                                    <ToolTip Visibility="{Binding ToolTipVisibility}">
                                        <TextBlock Text="{Binding ToolTipText}"/>
                                    </ToolTip>
                                </Setter.Value>
                            </Setter>
                        </Style>
                         
                    </telerik:GridViewColumn.CellStyle>
                </telerik:GridViewDataColumn>
                 
            </telerik:RadGridView.Columns>
        </telerik:RadGridView>
         
    </Grid>
</Window>

Any ideas would be greatly appreciated. Thanks again!

Cheers!

Jason
Jason
Top achievements
Rank 1
 answered on 05 Dec 2013
1 answer
107 views

Hi,


I have an object which I use in Mail Merge.  Under "Insert Mail Merge" drop down ribbon button, all of these fields appear and I can use them just fine.  However, I don't need all properties to be displayed there.  Is there a way to specify which properties show and should not be included as part of the Mail Merge fields?



Also, is it possible to give a different name to the Mail Merge item in the drop down ribbon button?  For example, if I have a property FirstName, I want it to display as "First Name".



Thank you in advance.



Petya
Telerik team
 answered on 05 Dec 2013
12 answers
415 views
I need to be able to color each task on the gantt view independently.  meaning the first item in a series should be blue if it meet a criteria, or red, or green, depending on conditions.  I only see the theming option, which wont accomplish my goal.
is it possible to color each task seperately?
Yana
Telerik team
 answered on 05 Dec 2013
1 answer
115 views
Some api naming issues that tend to make working with charting more difficult:

RadChart is in the Telerik.Windows.Charting.dll and is referred to as "Chart" in the documentation and RadChart in code.

However, RadChartView is in the Telerik.Windows.Controls.Chart.dll (where you would think to look for RadChart), is referred to in the documentation as "ChartView" and the even less obvious "RadCartesianChart" in code.

I'm sure as new assemblies and controls get created a need for backward compatibility must be maintained, so the Charting.dll reference is likely a product of that since it appears like new controls get added to the Controls namespace. But something should be considered for Chartview, either correcting the code name (which hurts upgrade-ability) or correcting the documentation (which is always a pain).

Also, on a related note, the link in the Chart documentation that says "We encourage you to review our new control RadChartView for super-fast visualization of your data." links back to the Chart documentation instead of the ChartView documentation.


Tina Stancheva
Telerik team
 answered on 05 Dec 2013
0 answers
131 views
I have simple TreeListView and GrdiView. With drag-drop Telerik behaiviars move data between components. The problem is that GrdiItemTemplate work only from GridView, but not for TreeListView.  See image ba.png for more information.                                                                                                                                                                                                                                                                                                                                          And please fix forum editor. Cannot press enter, cannot paste text, paste image or paste from Word. I use lattes IE browser.  See atached image for more info.
kity
Top achievements
Rank 2
 asked on 05 Dec 2013
13 answers
120 views
Hi,

I'm a little bit confused and I need help to select the proper conponent for what I'm trying to do... Image enclosed...

Thank's
Alain
Kalin
Telerik team
 answered on 05 Dec 2013
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
FileDialogs
Book
ToolBar
ColorPicker
TimePicker
MultiColumnComboBox
SyntaxEditor
VirtualGrid
Wizard
ExpressionEditor
NavigationView (Hamburger Menu)
WatermarkTextBox
DesktopAlert
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
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Top achievements
Rank 1
Iron
Iron
Iron
Rob
Top achievements
Rank 3
Bronze
Bronze
Iron
ivory
Top achievements
Rank 1
Iron
Nurik
Top achievements
Rank 2
Iron
Iron
YF
Top achievements
Rank 1
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?