Telerik Forums
UI for WPF Forum
1 answer
88 views
I am trying to create a custom filter tool for a group of texts

I have the following XAML http://pastebin.com/h41fjb9J and codebehind is http://pastebin.com/PTd48bJZ and my custom type is http://pastebin.com/LFnGynbz

What I dont understand is that if I have 
                    <telerik:GridViewDataColumn
                        DataMemberBinding="{Binding Path=Checked}"/>
                    <telerik:GridViewDataColumn
                        IsReadOnly="True"
                        DataMemberBinding="{Binding Path=Text}"/>

Then it works but its ugly as I want to it look exactly like the 
<CheckBox Content="{x:StaticExtension localization:SemenBucketTexts.SelectAll}" Click="SelectAll" />
above with no borders or headers

If I then try to create a custom celltemplate 

                    <telerik:GridViewDataColumn>
                        <telerik:GridViewDataColumn.CellTemplate>
                            <DataTemplate>
                                <CheckBox Checked="{Binding Path=Checked}" Content="{Binding Text}"/>
                            </DataTemplate>
                        </telerik:GridViewDataColumn.CellTemplate>
                    </telerik:GridViewDataColumn>

I get an exception 
InnerException = {"Unable to cast object of type 'System.Reflection.RuntimeEventInfo' to type 'System.Reflection.MethodInfo'."}



Ivan Ivanov
Telerik team
 answered on 06 Jan 2015
3 answers
230 views
I have trouble with creating a custom cell template for my custom filtering

I have the following xaml file
http://pastebin.com/12MYWM6J

And this codebehind
http://pastebin.com/c0JVMnQU

And this is my custom type
http://pastebin.com/LFnGynbz

My problem is that if I do not comment out 

<telerik:GridViewDataColumn>
    <telerik:GridViewDataColumn.CellTemplate>
        <DataTemplate>
            <CheckBox Checked="{Binding Path=Checked}" Content="{Binding Text}"/>
        </DataTemplate>
    </telerik:GridViewDataColumn.CellTemplate>
</telerik:GridViewDataColumn>


Then my application throws an exception
{"Unable to cast object of type 'System.Reflection.RuntimeEventInfo' to type 'System.Reflection.MethodInfo'."}

If I do comment it out then it runs fine, but it looks wrong, I dont want

<telerik:GridViewDataColumn
    DataMemberBinding="{Binding Path=Checked}"/>
<telerik:GridViewDataColumn
    IsReadOnly="True"
    DataMemberBinding="{Binding Path=Text}"/>


I want the checkboxes I create in my radgridview to align with the one in top
<CheckBox Content="{x:StaticExtension localization:SemenBucketTexts.SelectAll}" Click="SelectAll" />
Ivan Ivanov
Telerik team
 answered on 06 Jan 2015
1 answer
89 views
Hi,

I would like to know if Telerik have a control to do something like what Microsoft InfoPath do?

Thank's
Alain
Petya
Telerik team
 answered on 06 Jan 2015
1 answer
596 views
I am trying to override the default clipboard behavior to only support pasting plain text using the following code:

ClipboardEx.ClipboardHandlers.Clear();
var clipboardHandler = new ClipboardHandler();
clipboardHandler.ClipboardDataFormat = DataFormats.Text;
clipboardHandler.DocumentFormatProvider = new TxtFormatProvider();
ClipboardEx.ClipboardHandlers.Add(clipboardHandler);

This seems to work appropriately when pasting from an application such as MS Word. However, if I copy from a RadRichTextBox and then paste into the same RadRichTextBox, the formatting is preserved. How can I also paste plain text when copying from the same RadRichTextBox I am pasting into?
Boby
Telerik team
 answered on 06 Jan 2015
1 answer
121 views
Hi, after moving from Telerik 2013.3 to 2014.3 we get an exception when the popupmenuitems in a radribbongallery is about to expand. We are using the same control several places in our application and it only fails one place, so it takes some wizardry to make it fail. I am not able to reproduce this in a test exampleb but if you by chance have any suggestions on things to try it would be appreciated.

Here's a simpliefied xaml that fails:
            <telerik:RadRibbonGallery.PopupMenuItems>
                <telerik:RadMenu ClickToOpen="False">
                <telerik:RadMenuItem Header="Test">
                    <telerik:RadMenuItem Header="Test submenu"/>
                </telerik:RadMenuItem>
                </telerik:RadMenu>
            </telerik:RadRibbonGallery.PopupMenuItems>

Here's the exception details:

Exception1:
Cannot perform action because the specified Storyboard was not applied to this object
for interactive control.

System.Windows.Media.Animation.Storyboard

GetStoryboardClock

Source:
PresentationFramework


Target:
System.Windows.Media.Animation.Clock
GetStoryboardClock(System.Windows.DependencyObject, Boolean,
InteractiveOperation)

 

Stacktrace:   
at
System.Windows.Media.Animation.Storyboard.GetStoryboardClock(DependencyObject
o, Boolean throwIfNull, InteractiveOperation operation)

  
at System.Windows.Media.Animation.Storyboard.GetCurrentStateImpl(DependencyObject
containingObject)

  
at System.Windows.Media.Animation.Storyboard.GetCurrentState()

  
at
Telerik.Windows.Controls.Animation.AnimationManager.StopIfRunning(FrameworkElement
target, String animationName, Boolean animateSelf)

  
at Telerik.Windows.Controls.RadMenuItem.OnIsSubmenuOpenChanged(DependencyObject
d, DependencyPropertyChangedEventArgs e)

  
at
System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs
e)

  
at
System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs
e)

  
at
System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs
args)

  
at System.Windows.DependencyObject.UpdateEffectiveValue(EntryIndex entryIndex,
DependencyProperty dp, PropertyMetadata metadata, EffectiveValueEntry oldEntry,
EffectiveValueEntry& newEntry, Boolean coerceWithDeferredReference, Boolean
coerceWithCurrentValue, OperationType operationType)

  
at System.Windows.DependencyObject.SetValueCommon(DependencyProperty dp, Object
value, PropertyMetadata metadata, Boolean coerceWithDeferredReference, Boolean
coerceWithCurrentValue, OperationType operationType, Boolean isInternal)

  
at System.Windows.DependencyObject.SetValue(DependencyProperty dp, Object
value)

  
at Telerik.Windows.Controls.RadMenuItem.set_IsSubmenuOpen(Boolean value)

  
at Telerik.Windows.Controls.RadMenuItem.CloseMenu()

  
at Telerik.Windows.Controls.RadMenuItem.OnIsSelectedChanged(DependencyObject d,
DependencyPropertyChangedEventArgs e)

  
at
System.Windows.DependencyObject.OnPropertyChanged(DependencyPropertyChangedEventArgs
e)

  
at System.Windows.FrameworkElement.OnPropertyChanged(DependencyPropertyChangedEventArgs
e)

  
at
System.Windows.DependencyObject.NotifyPropertyChange(DependencyPropertyChangedEventArgs
args)

  
at System.Windows.DependencyObject.UpdateEffectiveValue(EntryIndex entryIndex,
DependencyProperty dp, PropertyMetadata metadata, EffectiveValueEntry oldEntry,
EffectiveValueEntry& newEntry, Boolean coerceWithDeferredReference, Boolean
coerceWithCurrentValue, OperationType operationType)

  
at System.Windows.DependencyObject.SetValueCommon(DependencyProperty dp, Object
value, PropertyMetadata metadata, Boolean coerceWithDeferredReference, Boolean
coerceWithCurrentValue, OperationType operationType, Boolean isInternal)

  
at System.Windows.DependencyObject.SetValue(DependencyProperty dp, Object
value)

  
at Telerik.Windows.Controls.RadMenuItem.set_IsSelected(Boolean value)

  
at Telerik.Windows.Controls.MenuBase.set_CurrentSelection(RadMenuItem value)

  
at Telerik.Windows.Controls.MenuBase.CloseAll()

  
at Telerik.Windows.Controls.RadMenuItem.OnCloseTimerTick(Object sender,
EventArgs e)

  
at System.Windows.Threading.DispatcherTimer.FireTick(Object unused)

  
at System.Windows.Threading.ExceptionWrapper.InternalRealCall(Delegate
callback, Object args, Int32 numArgs)

  
at MS.Internal.Threading.ExceptionFilterHelper.TryCatchWhen(Object source,
Delegate method, Object args, Int32 numArgs, Delegate catchHandler)





Milena
Telerik team
 answered on 06 Jan 2015
2 answers
232 views
Is there any way to make the number scale within the gauge match the Outerborder of the gauge? It seems to be wider at the base of the gauge and if I want to add a GaugeRange it looks odd. thanks chuckl 

<telerik:RadSemicircleNorthGauge Width="182.5" Height="100" InnerBackground="white" OuterBackground="WhiteSmoke" OuterBorderThickness="0">
<telerik:SemicircleNorthScale ShowLastLabel="False" FontSize="11" VerticalAlignment="Center" Min="0" Max="99" RangeOffset="7" >
<telerik:SemicircleNorthScale.Indicators>
<telerik:Needle Value="65" />
<telerik:Pinpoint />
</telerik:SemicircleNorthScale.Indicators>
<telerik:SemicircleNorthScale.Ranges>
<telerik:GaugeRange Min="0" Max="65" Background="Green" />
<telerik:GaugeRange Min="65" Max="99" Background="Red"/>
</telerik:SemicircleNorthScale.Ranges>
</telerik:SemicircleNorthScale>
</telerik:RadSemicircleNorthGauge>

<telerik:RadSemicircleNorthGauge Width="182.5" Height="100" InnerBackground="WhiteSmoke"
OuterBackground="WhiteSmoke" Background="WhiteSmoke" BorderBrush="WhiteSmoke" OuterBorderThickness="1">
<telerik:SemicircleNorthScale FontSize="11" VerticalAlignment="Center" Min="0" Max="100" MajorTicks="10" MiddleTicks="1" >
<telerik:SemicircleNorthScale.Indicators>
<telerik:Needle Value="26" />
<telerik:Pinpoint />
</telerik:SemicircleNorthScale.Indicators>
</telerik:SemicircleNorthScale>
</telerik:RadSemicircleNorthGauge>
Martin Ivanov
Telerik team
 answered on 06 Jan 2015
1 answer
175 views
Hello,

When displaying scatter plots, I like to use the following three properties on my ScatterSeries:
ClipToBounds=False, ClipToPlotArea=False, and ZIndex=1000 
to ensure the points don't get clipped by the axes and boundary scrollbars.  See attached pic for the result, when using a single series.

I'm not quite sure how to set the ZIndex of the scatter series when using a ChartSeriesProvider though for dynamic series.  It lets me set the ClipToBounds and ClipToPlotArea properties, but not the ZIndex using attached properties.

<telerik:ChartSeriesProvider Source="{Binding MultiSeriesData}">
    <telerik:ChartSeriesProvider.SeriesDescriptors>
        <telerik:ScatterSeriesDescriptor ItemsSourcePath="Data" XValuePath="X" YValuePath="Y">
            <telerik:ScatterSeriesDescriptor.Style>
                <Style TargetType="telerik:ScatterPointSeries" BasedOn="{StaticResource ScatterPointSeriesStyle}">
                    <Setter Property="ClipToBounds" Value="False" />
                    <Setter Property="ClipToPlotArea" Value="False" />
            <!-- I'd like to be able to do the following, but it causes an error -->
            <!-- <Setter Property="ZIndex" Value="1000" /> -->
                </Style>
            </telerik:ScatterSeriesDescriptor.Style>
        </telerik:ScatterSeriesDescriptor>
    </telerik:ChartSeriesProvider.SeriesDescriptors>
</telerik:ChartSeriesProvider>

Any suggestion on how to set the ZIndex of the dynamic scatter series?  It doesn't matter to me if they're all the same value, they just need to be higher than the chart boundary scrollbars.
Petar Marchev
Telerik team
 answered on 06 Jan 2015
8 answers
127 views
Hi All,

I am using Telerik WPF trial version but my client will buy it soon. I am recursively loading directories tree and listing on RadTreeListView.

The top most directories trees are working but the most buttom doesn't work as expect.

Seet the attach files
Weera
Top achievements
Rank 1
 answered on 05 Jan 2015
3 answers
1.4K+ views
Hello, I want to change Combobox style ( for instance simple changes of borderbrush, see attached file please).
I tried to change some value of colors in templates, but there is no any result.

Could you explain me step-by-step how can I change borderbrush (of cause separate color when control is enabled and disabled)?
Thank You
Nasko
Telerik team
 answered on 05 Jan 2015
1 answer
125 views
I'm trying to add a behavior inside all cells of a column. 

  <telerik:GridViewDataColumn.CellTemplate>
    <DataTemplate DataType="itemGrid:ItemGrid">
      <Grid Panel.ZIndex="10" Background="Red" VerticalAlignment="Stretch"      HorizontalAlignment="Stretch">
          <TextBlock Text="{Binding ItemName}"/>
           <i:Interaction.Behaviors>
             <behaviors:InertiaDeleteCptBehavior/>
           </i:Interaction.Behaviors>
        </Grid>
  </DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>

And to catch manipulation events like that : 

protected override void OnAttached() {
          base.OnAttached();
          AssociatedObject.ManipulationDelta += Item_ManipulationDelta;
          AssociatedObject.ManipulationInertiaStarting += Item_ManipulationInertiaStarting;
          AssociatedObject.ManipulationCompleted += Item_ManipulationCompleted;
      }

I thind that the GridView handle events an nothing past inside my behavior. Can i find another solution to work around this problem.
Nick
Telerik team
 answered on 05 Jan 2015
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?