ScheduleView is not maintaining the point where it was scrolled.
I am facing this issue in such conditions:
1) ScheduleView is scrolled on max amount horizontally.(scheduleview.jpg).
2) CustomRadDocking.DocumentHost>
Sidebar is pinned. Please note width of ScheduleView is changed automatically when sidebar is pinned. (sidebar_pin.jpg)
3) Unpin Sidebar. Now ScheduleView is not scrolled to the max amount. (scheduleview_scroll.jpg)
The layout is like this:
<custom:CustomRadDocking RetainPaneSizeMode="DockingAndFloating"
Grid.Row="3"
Margin="0"
BorderThickness="0"
Padding="0"
controls:AnimationManager.IsAnimationEnabled="False"
controls:AnimationManager.AnimationSelector="{x:Null}"
CloseButtonPosition="InPane"
DragDropMode="Immediate">
<custom:CustomRadDocking.DocumentHost>
<telerik:RadSplitContainer>
<telerik:RadPaneGroup IsContentPreserved="True"
BorderThickness="0"
Margin="0"
Align="Justify"
AllTabsEqualHeight="True"
DocumentHostTemplate="{StaticResource DocumentHostWithoutBorders}"
Padding="0">
<telerik:RadDocumentPane Visibility="Collapsed"
CanUserClose="False"
BorderThickness="0"
Margin="0"
Padding="0"
Title="Gantt">
<telerik:RadDocumentPane.Content>
<DockPanel x:Name="Schedule_Root">
<AdornerDecorator>
<telerik:RadScheduleView x:Name="ScheduleControl"/>
</telerik:RadDocumentPane.Content>
</telerik:RadDocumentPane>
</telerik:RadPaneGroup>
</telerik:RadSplitContainer>
</custom:CustomRadDocking.DocumentHost>
<telerik:RadSplitContainer controls:DockingPanel.InitialSize="454,150"
InitialPosition="DockedRight">
<telerik:RadPaneGroup IsContentPreserved="True"
Align="Justify"
AllTabsEqualHeight="True"
Name="ExpandiblePanels">
<telerik:RadPane Header="Sidebar" />
</telerik:RadPaneGroup>
</telerik:RadSplitContainer>
</custom:CustomRadDocking>
I have the following Slider. The rangeslider thumb does not respect the 0.1 distance between the start and end thumbs, the minimum space is 0 instead of 0.1 as I want.. What am I doing wrong?
<
telerik:RadSlider
x:Name
=
"RadSlider"
Margin
=
"0,0,0,6"
VerticalAlignment
=
"Bottom"
AutoToolTipPlacement
=
"TopLeft"
DragCompleted
=
"RadSlider_OnDragCompleted"
IsMoveToPointEnabled
=
"False"
IsSelectionRangeEnabled
=
"True"
Maximum
=
"1"
Minimum
=
"0"
MinimumRangeSpan
=
"0.1"
>
<
telerik:RadSlider.Thumbs
>
<
telerik:RangeSliderThumb
x:Name
=
"RangeSliderThumb"
AlternateThumbStyle
=
"{StaticResource EndThumbStyle}"
InteractionMode
=
"Lock"
MiddleThumbStyle
=
"{StaticResource MiddleThumbStyle}"
MinimumRangeSpan
=
"0.1"
ThumbStyle
=
"{StaticResource StartThumbStyle}"
/>
</
telerik:RadSlider.Thumbs
>
</
telerik:RadSlider
>
Hi,
Can't seem to find the way to set CommandButtonsVisibility from code
behind. I'm building a user control with dynamic behavior the DataForm.
In XAML it's easy and working.
Anybody that has an idea?
Thanks in advance!
Kurt
Hi Sir,
i am working with Navigationview.in this , i have to show different page while clicking menus.for that i created usercontrol.and stored usercontol page name in database.now how to bind that name in content.can user id for reference.give solution sir.
Hello,
I'm using the codeblock insert code function. Sometimes the string that I'm inserting with the API is maybe 200 lines. It takes a while for it to load. So far I understand that there really isn't anything I can do to optimize this. Can you help to provide an example where I can have the RadProgressBar running while the RadRichTextBox is loading the code. I understand there are two UI threads. Is it possible and can you help me with an example?
The code I'm running is:
Code_Window.InsertCodeBlock(big_string,
new Telerik.Windows.Documents.Model.Code.CodeFormattingSettings(
Telerik.Windows.Documents.Model.Code.CodeLanguages.CSharp));
You can set it up on a button click and initialize the string big_string in the call back. The progress bar can be indeterminate also.
Good day.
How can I make the columns width adjust automatically. I want the columns to take the full width of the GridView and have it evenly distributed.
Thank you.
Good day.
Is it possible to put the Busy Indicator to other part of my page?
The scenario is I have a page with Grid View at the center. But I want to show the loading/progress at the bottom of my page not at the center where the GridView is placed.
Can I manually refresh or update a TreeView from my ViewModel?
I have a TreeView whitch is connected to a multiple level Dictionary.
Each branch in the TreeView has a number on it. The number represents the number of notes added to the branch combined with the number of notes on the branches below.
When I remove or add a note on a branch the number on the branch is updated.
How ever the number on the branches above it are not updated, even though I refreshed the whole dictionary (all the parents and children).
Thanks in advance!