I want to set the two first Buttons of the RadGridView ControlPanelItems to the left. Is this possible and how. The image describes what I want to do. Below you will find also my source code.
01.<telerik:RadGridView.ControlPanelItems>02. 03. <telerik:ControlPanelItem>04. <telerik:ControlPanelItem.ButtonContent>05. <telerik:RadButton Name="EnlargeFontSize" Click="EnlargeFontSize_OnClick">06. <DockPanel>07. <TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontWeight="Bold" FontSize="16"/>08. <TextBlock TextAlignment="Center"/>09. </DockPanel>10. </telerik:RadButton>11. </telerik:ControlPanelItem.ButtonContent>12. </telerik:ControlPanelItem>13. 14. <telerik:ControlPanelItem>15. <telerik:ControlPanelItem.ButtonContent>16. <telerik:RadButton Name="ReduceFontSize" Click="ReduceFontSize_OnClick" >17. <DockPanel>18. <TextBlock Text="" FontFamily="Segoe MDL2 Assets" FontWeight="Bold" FontSize="16"/>19. <TextBlock TextAlignment="Center"/>20. </DockPanel>21. </telerik:RadButton>22. </telerik:ControlPanelItem.ButtonContent>23. </telerik:ControlPanelItem>24. 25. <telerik:ControlPanelItem>26. <telerik:ControlPanelItem.ButtonContent>27. <telerik:RadButton Click="ResetView_Click" HorizontalContentAlignment="Stretch">28. <DockPanel>29. <TextBlock Text="" FontFamily="Segoe UI Symbol" Foreground="Red"/>30. <TextBlock Text="Anpassung Zurücksetzen" TextAlignment="Center"/>31. </DockPanel>32. </telerik:RadButton>33. </telerik:ControlPanelItem.ButtonContent>34. </telerik:ControlPanelItem>35. 36.</telerik:RadGridView.ControlPanelItems><telerik:RadGridView Name="patientsGridView" SelectionMode="Extended" ItemsSource="{Binding Patients}" SelectedItem="{Binding SelectedPatient}" AutoGenerateColumns="False" IsReadOnly="True" > public ObservableCollection<PatientViewModel> SelectedPatients { ... }Working with Q1 2012
Hi, I have a radgridview control, with custom columns (not autogenerated), all of them editable. When I click in the "Click Here to add new Item", that row changes into edit mode and the cursor is in the first column (C1). When I press TAB, the focus passes to the next column (C2) but it seems to exit from edit mode. Then I have to press TAB again 4 times to enter again in edit mode, but in C3. If at that moment I press SHIFT+TAB, it goes back to C2 in editmode, and if I press again SHIFT+TAB it goes to C1, also in edit mode, then I can press TAB again and goes to C2 in edit mode, and everything seems to work well. This happens every time I try to add a new row. And some times just the TAB behaviour is too wrong. Instead of passing to the next column of the same row, it passes to the next column of another row, like if radgridview is confused about tab navigation.
Apart from that, when I try to validate a cell, the first time I set an error it is shown, but then I rectify and try to put another invalid value and then press TAB and it does not shows any error, but does not let you change TAB.
I would appreciate some workaround to this.
Thanks in advance.
David.
Hi,
I have a strange problem with docking control:
as you see in following code I have a unpinned RadPane(there are 4 tabs inside the RadPane). I hover mouse over RadPane and it appears.
when I click in TAB1 and click the Button and click TAB2, RadPane hides itself.
please help me to fix it.
thanks.
My code:
<telerik:RadDocking HorizontalAlignment="Stretch">
<telerik:RadSplitContainer MinWidth="300" InitialPosition="DockedRight">
<telerik:RadSplitContainer >
<telerik:RadPaneGroup >
<telerik:RadPane CanFloat="False" CanUserPin="True" CanDockInDocumentHost="False"
x:Name="pane"
CanUserClose="False" Header="PaneHeader"
IsPinned="False" AutoHideWidth="300">
<telerik:RadTabControl>
<telerik:RadTabItem Header="TAB1">
<Grid>
<telerik:RadButton Content="Button"/>
</Grid>
</telerik:RadTabItem>
<telerik:RadTabItem Header="TAB2" IsSelected="True">
<Grid>
<TextBlock Text="Nothing"/>
</Grid>
</telerik:RadTabItem>
<telerik:RadTabItem Header="TAB3">
<Grid>
<TextBlock Text="Nothing"/>
</Grid>
</telerik:RadTabItem>
<telerik:RadTabItem Header="TAB4">
<Grid>
<TextBlock Text="Nothing"/>
</Grid>
</telerik:RadTabItem>
</telerik:RadTabControl>
</telerik:RadPane>
</telerik:RadPaneGroup>
</telerik:RadSplitContainer>
</telerik:RadSplitContainer>
</telerik:RadDocking>
Hi,
I have two different collections with items of type A and B where B contains typeA's Id and vice versa, and I'm displaying these two collections in two different RadGridViews .
Type A contains : IdA , prop1A , IdB
Type B contains : IdB , prop1B , IdA
What I want to do is to be able to drag an item from one grid to the other by recovering the target type Id from source type and retrieve the target element from a source By the recovered id and insert it into the target RadGridView .
Any help would be greatly appreciated!

Hey every one. I have a radRich textbox and I want the text to be rtl. I used
this.radRichTextBox.Document.StyleRepository[dd.RadDocumentDefaultStyles.NormalStyleName].ParagraphProperties.FlowDirection
= FlowDirection.RightToLeft;
although the text inside the texbox is rtl but whenever I use paragraphs the text is not enveloped by the parentheses:
گوگول))
or
)گوگولی(
also there is another problem. In farsi there are punctuations like "،". whenever I use that it goes behind the text. like what happened for . in previous versions of telerik. what should I do?
it should be like this:
،جینگول
but it is like this:
جینگول،
Hi there,
Love the Desktop Alert component and love the font glyph's you guys have supplied as part of the Implicit Styling.
How would I use a font glyph as my icon for a Desktop Alert?
Thanks in advance,
Dave
Hello!
I tried the examples of diagram,and I found that when I set the Opacity Property of a shape,and save the diagram to a xml,the Opacity Property did't saved to the xml file,so when I open the xml in diagram, the Opacity Property of the shape was 100%.
How to solve this bug?