Telerik Forums
UI for WPF Forum
1 answer
134 views

i download the free trial  RadControlsForWpfSetup_2012_2_611,and i study to us the gauge controls following this page : http://www.telerik.com/help/wpf/radgauge-overview.html

but when i run this corde

<Window x:Class="WpfApp.MainWindow"
        Title="MainWindow" Height="350" Width="525">
    <Grid>
        <telerik:RadialScale>
            <telerik:IndicatorList>
                <telerik:StateIndicator Name="stateIndicator"
   Left="0.45"
   Top="0.25"
   RelativeWidth="0.2"
   RelativeHeight="0.2">
                </telerik:StateIndicator>
            </telerik:IndicatorList>
        </telerik:RadialScale>
    </Grid>
</Window>

there are some erro message:
1、can't find the type"telerik:IndicatorList"
2、there is no Left 、Top、 RelativeWidth and RelativeHeight proprietary in StateIndicator
i also reference the these .dll: Telerik.Windows.Controls.DataVisualization.dll Telerik.Windows.Controls.dll Telerik.Windows.Data.dll
I do not konw the reason .
who can help me
Thanks !

Andrey
Telerik team
 answered on 09 Jul 2012
2 answers
117 views
Hello,

I'm trying since friday to use telerik: a greate product, but I have an issue.
I have Datagrid with large string columns and activated Expression_Dark theme.

        <telerik:RadGridView  telerik:StyleManager.Theme="Expression_Dark" ItemsSource="{Binding Path=Collection}" AutoGenerateColumns="False">
            <telerik:RadGridView.Columns>
                <telerik:GridViewDataColumn Header="Path" DataMemberBinding="{Binding Path=Path}"/>
                <telerik:GridViewDataColumn Header="Path2" DataMemberBinding="{Binding Path=Path}"/>
                <telerik:GridViewDataColumn Header="Path3" DataMemberBinding="{Binding Path=Path}"/>
            </telerik:RadGridView.Columns>
        </telerik:RadGridView>



After Application startup I scrolled directly with the slider to the right end of datagrid window and clicked Filter button on Path3
My Application is frozen. 

You can reproduce this Issuue with my Project: http://ysoft.de/filtertest.zip

Could you please check the issue and give me a reply?
Kravetsker
Top achievements
Rank 1
 answered on 09 Jul 2012
1 answer
59 views
Hi,

I got a RadTabControl whose itemsource is databinded to an observablecollection and it's itemtemplate has a RadBook. I am also using a RadPager attached to the RadBook in the itemtemplate. Everything with the binding and stuff works fine.

When I have two objects in the collection, two tabs are generated. This is ok and each tab has its RadBook fully loaded as expected. Browsing and fliping the pages are also ok. But, when I move from one tab to the other, the previous tab's RadBook (the one that lost focus) goes back or resets to the front page. The page that was last viewed does not hold.

Why is that?

Thanks
Petar Mladenov
Telerik team
 answered on 09 Jul 2012
12 answers
311 views
I couldn't find a better place to put this request or opinion...
I would also like to see the ganttview work with the different themes as I am finding it is the one control in our entire application that you can't read and looks out of place if the user select certain themes, especially expression_dark.

It would be really nice if you could simply
StyleManager.ApplicationTheme = (Theme)themeUserSelected;
InitializeComponent();
and have the ganttview match the rest of the application without having to use downloaded resource dictionaries or workarounds.
Guru
Top achievements
Rank 2
 answered on 06 Jul 2012
2 answers
110 views
I would like the TreeListView to display a vector image for each Item state instead of a graphics file (png/jpg) and use for example, this path as defined in the Xaml.

Is that possible?
<Window.Resources>
   <Path x:Key="MyVectorImage" 
              x:Shared="False"
              Stroke="DarkGoldenRod"
              StrokeThickness="3"
              Data="M 10,20 C 10,25 40,35 40,17 H 28"
              Stretch="Fill"
              Width="100"
              Height="40"/>
</Window.Resources>

OmegaMan
Top achievements
Rank 1
 answered on 06 Jul 2012
1 answer
111 views
Hi,

Is anyone else experiencing issues with the telerik docking floating window when using a Microsoft Touch Mouse?

For some reason, when I use the two finger gesture to expand a docking floating window the window disappears off of the screen. I am then unable to retrieve the window as it is nowhere to be seen or accessed.

http://www.microsoft.com/hardware/en-gb/p/touch-mouse#details

Thanks,

Rob
Yana
Telerik team
 answered on 06 Jul 2012
4 answers
281 views
I am trying to localize the column headers using the following code for each of the column in the parent and the child gridviews in a hierarchical view.

<telerik:GridViewColumn.Header>
            <TextBlock Text="JudgementCode" telerik:LocalizationManager.ResourceKey="JudgementCode"></TextBlock>
  </telerik:GridViewColumn.Header>

This works fine for the main grid, but when I expand a row to see its child gridview, the child table column headers are not localized.

Is there something different I need to be doing for hierarchical gridveiw.
asp.net
Top achievements
Rank 1
 answered on 06 Jul 2012
5 answers
404 views
Hi!

I've a Scheduler view, which has custom appointments.

I need to have some of these appointment that aren't drag&dropable, depending of a value of one resource of the appointment.

My question is:
On which property of the xaml(in the datatemplate?) can I bind a value which indicate if the current appointment is drag&dropable?
OR
Is there a event in which I enter when I try to do the drag&drop? Where I can cancel if I want the change?

Thank you
Yana
Telerik team
 answered on 06 Jul 2012
9 answers
201 views
Hello ,
I am trying to  bind my rad chart title to a string in view model.

 

 

<telerik:ChartDefaultView.ChartTitle>

 

 

<telerik:ChartTitle Content= "{Binding RelativeSource={RelativeSource Mode=FindAncestor,AncestorType={x:Type views:PlotView}},Path=DataContext.ChartTitle}" HorizontalAlignment="Center"/>

 

 

</telerik:ChartDefaultView.ChartTitle>


But it is not getting binded niether i am getting any error.
Please help.....
Yavor
Telerik team
 answered on 06 Jul 2012
9 answers
410 views
I am using MVVM and would like to move the event handling out of the view. I am trying to handle the PageIndexChanged event of the RadDataPager by using a custom binding. The handler sets the ItemsSource of a RadGridView and the ItemCount of the pager (i.e. I am doing the paging myself). To set it up I use a style:

    <Window.Resources>
        <Style TargetType="{x:Type telerik:RadDataPager}"
               x:Key="indexChangedStyle">
            <Setter Property="local:PageIndexChangedBehavior.SetPageIndexChanged"
                    Value="True" />
        </Style>
    </Window.Resources>

        <telerik:RadDataPager x:Name="dataPager"
                              Grid.Row="1"
                              DisplayMode="All"
                              PageSize="10"
                              Style="{StaticResource indexChangedStyle}">

In the custom behavior I do this:
        public static readonly DependencyProperty SetPageIndexChangedProperty =
            DependencyProperty.RegisterAttached(
            "SetPageIndexChanged",
            typeof(bool),
            typeof(PageIndexChangedBehavior),
            new UIPropertyMetadata(true, OnSetPageIndexChanged));

        private static void OnSetPageIndexChanged(DependencyObject obj, DependencyPropertyChangedEventArgs e)
        {
            RadDataPager pager = obj as RadDataPager;
            if (pager == null)
                return;

            if (e.NewValue is bool == false)
                return;

            if ((bool)e.NewValue)
                pager.PageIndexChanged += pager_PageIndexChanged;
            else
                pager.PageIndexChanged -= pager_PageIndexChanged;
        }

OnSetPageIndexChanged() never gets called. Will this methodology work? Is there a better way?

Thanks.

Andrea
Ivan Ivanov
Telerik team
 answered on 06 Jul 2012
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
LayoutControl
ProgressBar
Sparkline
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
SplashScreen
Callout
Rating
Accessibility
CollectionNavigator
Localization
AutoSuggestBox
Security
VirtualKeyboard
HighlightTextBlock
TouchManager
StepProgressBar
Badge
OfficeNavigationBar
ExpressionParser
CircularProgressBar
SvgImage
PipsPager
SlideView
AI Coding Assistant
+? more
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Top users last month
Cynthia
Top achievements
Rank 1
Iron
Toby
Top achievements
Rank 3
Iron
Iron
Iron
Danielle
Top achievements
Rank 1
Iron
Iron
Joel
Top achievements
Rank 3
Bronze
Bronze
Iron
yw
Top achievements
Rank 2
Iron
Iron
Iron
Want to show your ninja superpower to fellow developers?
Want to show your ninja superpower to fellow developers?