Hi Everyone,
I want to bind Dictionary
to Rad property grid. But this dictionary keys and values are run time
generator. When I choose DB1 it may be 3 keys and 3 values if I choose DB2 it
may be 8 keys and 8 values. Here I don’t want to update Property Grid Xaml when
Dictionary values changes.
Can anyone
provide solution with help of sample application as soon as possible.
Regards,
Rajendar.
I read this document CustomText for GridViewNewRow
But I'm using built-in localization mechanism.
How can I do?


Hi,
Could you please advise how to reference the row(s) of the SelectedCells?
For example, would like to implement a "copy down/fill handler" (as in Excel) using a ContextMenu on the gridview. For each SelectedCell, we would like to copy the cell contents of the top selected row down to each row of the SelectedCells using MVVM. Please find a sample of the XAML attached.
<telerik:RadGridView Name="dtgMyData"
ItemsSource="{Binding Path=MyData}"
AutoGenerateColumns="False"
RowIndicatorVisibility="Visible"
HorizontalAlignment="Stretch"
SelectionMode="Extended"
SelectionUnit="Mixed">
...
<telerik:RadMenuItem Header="Copy Values Down" Command="{Binding DataContext.CopyValuesDownCommand, RelativeSource={RelativeSource FindAncestor, AncestorType={x:Type telerik:RadContextMenu}}}" CommandParameter="{Binding Path=UIElement, RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=telerik:RadContextMenu}}" />
</telerik:RadContextMenu.Items>
</telerik:RadContextMenu>
</telerik:RadContextMenu.ContextMenu>
...columns...
</telerik:RadGridView>
Kindly advise.
Thanks
Is it possibile obtain a gridlist for combobox?
Like WinForm controls?
I found a strange behaviour:
Redo command works but also select all document content. Why? How can I avoid it?
It happens only with paste: all other redo commands haven't this behaviour.
Thank you.

Our application uses RadMaskedTextInputs for user data input. When Enter is pressed, we perform field validation and focus the fields that need revising. If however two of these controls are focused one after the other, the application freezes. To test try the following:
Create a WPF with two RadMaskedTextInputs
<Grid>
<telerik:RadMaskedTextInput Width="100" Height="20" Margin="200,122,0,167" Name="txt1"></telerik:RadMaskedTextInput>
<telerik:RadMaskedTextInput Width="100" Height="20" Margin="200,155,0,134" Name="txt2"></telerik:RadMaskedTextInput>
</Grid>
On txt2 keyup event:
Private Sub txt2_KeyUp(sender As Object, e As System.Windows.Input.KeyEventArgs) Handles txt2.KeyUp
If e.Key = Key.Enter Then
txt1.Focus()
txt2.Focus()
End If
End Sub
Run the application, type something in txt2 and press enter.
Regards
We would like to click a row and show only the DETAILS row, not the "original" row. Please see attached files for clarity.
The main idea here is "Less is More". I don't want essentially 2 rows of information when I select a particular row.
If the user exits the DETAILS row (either by clicking another row or activates another window) then the row returns back to its normal state.
Thanks in advance!!!