Allow docking a floating window without making the pane take the whole space (Just like in visual studio).
When processing the SelectionChanged event for a RadComboBox, the Text property of the control is not yet set with the new text value. For example, we add a RadComboBox with the SelectionChanged event set to the following OnSelectionChanged.
private void OnSelectionChanged(object sender, SelectionChangedEventArgs e){ RadComboBox cb = sender as RadComboBox; Trace.TraceInformation("cb.Text = {0}", cb.Text);}When we start typing in the Combo Box, the displayed text is always the Text value before the latest character. So,l when we type 1, cb.Text is null, when we type 2, the combo box displays "12", but cb.Text is 1.
How can we see the current value of the text box when the selection is changed?
Hi,
I am running the following xaml:
<Grid><br> <telerik:RadRibbonView telerik:KeyTipService.IsKeyTipsEnabled="True"><br> <telerik:RadRibbonView.ApplicationMenu><br> <telerik:ApplicationMenu telerik:KeyTipService.AccessText="F"><br> <telerik:RadRibbonButton Content="New" telerik:KeyTipService.AltAccessText="N"/><br> </telerik:ApplicationMenu><br> </telerik:RadRibbonView.ApplicationMenu><br> </telerik:RadRibbonView><br> </Grid><br>
When I do "Alt+F", it opens the main menu like it should, but then if I press "N" alone, it clicks the button but does not close the application menu (and the access key disappears too). If I press "Alt+N", it closes the application menu promptly. My question is how do I close the application menu on just "N" alone?
Any ideas?
Best
Hello,
When I click in an empty gridview a new row is automatically created. How can I disable this functionality?
Because I need to do some validation first before a new row can be created in my scenario.
Thanks in advance.
Marcel
Hello.
I have boolean column in my grid with custom checkbox template:
<telerik:GridViewDataColumn Header="Custom Bool Column" EditTriggers="CellClick" DataMemberBinding="{Binding LabelReady, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}" HeaderTextAlignment="Center"> <telerik:GridViewColumn.CellTemplate> <DataTemplate> <Image Height="20" Margin="2" Stretch="Uniform"> <Image.Style> <Style TargetType="{x:Type Image}"> <Setter Property="Source" Value="/red-cross.png"/> <Style.Triggers> <DataTrigger Binding="{Binding LabelReady}" Value="True"> <Setter Property="Source" Value="/green-tick.png"/> </DataTrigger> </Style.Triggers> </Style> </Image.Style> </Image> </DataTemplate> </telerik:GridViewColumn.CellTemplate> </telerik:GridViewDataColumn>And I need to add a confirmation dialog on cell edit using MVVM approach, i.e. now when user double clicks on the image, the value is changed to opposite, how can I add a dialog, which will ask user if he really wants to change the value, and change the value in cell only if he press "Yes" ?
When installing RadPivotGrid references using your Nuget packages, I notice that the Nuget installer insists that my WPF project take a reference to System.Windows.Forms.
Why does a WPF control require WinForms-specific binaries?
I've just discovered that the RadPivotGrid does not support cell selection. After searching your forums, I can see that this feature has been promised since Q1 2013 but not delivered as of Q! 2015.
Is there a realistic timeframe for the delivery of this feature? Not being able to select individual cells/rows/columns is a deal-breaker and will result in my project being forced to use DevExpress.
I want to know how to add LabelDefinitions within this SeriesProvider.
​
<telerik:RadCartesianChart.SeriesProvider> <telerik:ChartSeriesProvider Source="{Binding PolygonFuncTable, Mode=OneWay}"> <telerik:ChartSeriesProvider.SeriesDescriptors> <!-- Polygon --> <telerik:ScatterSeriesDescriptor ItemsSourcePath="ColorPoints" XValuePath="X" YValuePath="Y"> <telerik:ScatterSeriesDescriptor.Style> <Style TargetType="telerik:ScatterLineSeries"> <Setter Property="RenderOptions" Value="{StaticResource renderOptions}" /> <Setter Property="StrokeThickness" Value="2"/> <Setter Property="Stroke" Value="Black"/> <Setter Property="ShowLabels" Value="False"/> <Style.Triggers> <DataTrigger Binding="{Binding ElementName=chkShowLabel, Path=IsChecked}" Value="True"> <Setter Property="ShowLabels" Value="True"/> </DataTrigger> </Style.Triggers> </Style> </telerik:ScatterSeriesDescriptor.Style> </telerik:ScatterSeriesDescriptor> </telerik:ChartSeriesProvider.SeriesDescriptors> </telerik:ChartSeriesProvider></telerik:RadCartesianChart.SeriesProvider>