<
ComboBox
Name
=
"cmbo_NewSME"
SelectedValue
=
"You can begin typing the name here..."
Height
=
"25"
Width
=
"300"
Margin
=
"5,6,5,0"
Loaded
=
"cmbo_NewSME_Loaded"
SelectionChanged
=
"cmbo_NewSME_SelectionChanged"
>
<
ComboBox.ItemContainerStyle
>
<
Style
TargetType
=
"{x:Type ComboBoxItem}"
BasedOn
=
"{StaticResource {x:Type ComboBoxItem}}"
>
<
EventSetter
Event
=
"PreviewMouseLeftButtonDown"
Handler
=
"PreviewMouseLeftButtonDown"
/>
<
Style.Triggers
>
<
DataTrigger
Binding
=
"{Binding Path=AD_FullName}"
Value
=
""
>
<
Setter
Property
=
"Template"
>
<
Setter.Value
>
<
ControlTemplate
TargetType
=
"{x:Type ComboBoxItem}"
>
<
StackPanel
Name
=
"FullUsrListWrap"
Visibility
=
"Visible"
Width
=
"300"
>
<
Separator
Name
=
"FullList"
Margin
=
"0,10,0,5"
Height
=
"10"
Width
=
"300"
/>
<
telerik:RadButton
Name
=
"ShowAllUsrs"
Width
=
"220"
Height
=
"20"
HorizontalContentAlignment
=
"Center"
VerticalContentAlignment
=
"Center"
HorizontalAlignment
=
"Center"
Margin
=
"0,0,0,5"
Content
=
"Show All Authorize-IT Users..."
/>
</
StackPanel
>
</
ControlTemplate
>
</
Setter.Value
>
</
Setter
>
</
DataTrigger
>
</
Style.Triggers
>
</
Style
>
</
ComboBox.ItemContainerStyle
>
</
ComboBox
>
<
ControlTemplate
TargetType
=
"{x:Type ComboBoxItem}"
>
<
StackPanel
Name
=
"FullUsrListWrap"
Visibility
=
"Visible"
Width
=
"300"
>
<
Separator
Name
=
"FullList"
Margin
=
"0,10,0,5"
Height
=
"10"
Width
=
"300"
/>
<
telerik:RadButton
Name
=
"ShowAllUsrs"
Width
=
"220"
Height
=
"20"
HorizontalContentAlignment
=
"Center"
VerticalContentAlignment
=
"Center"
HorizontalAlignment
=
"Center"
Margin
=
"0,0,0,5"
Content
=
"Show All Authorize-IT Users..."
>
<
Style
>
<
EventSetter
Event
=
"Click"
Handler
=
"Click"
/>
</
Style
>
</
telerik:RadButton
>
</
StackPanel
>
</
ControlTemplate
>
Hi,
I'm using ScheduleView to load custom appointments with the Load on demand features. The appointments load fine, but whenever I scroll backward or forward in time (e.g. previous/next week or month) the calendar scrolls back to the top, instead of staying at the time it was scrolled to before navigation.
This also occurs in the RadControls demo; just navigate to Controls -> Data -> Schedule View -> Features -> Load On Demand. Now click Week view. Scroll down to 18:00. Now click the right arrow to navigate to next week. The view scrolls back to the top at 0:00.
Any ideas on how to fix this? I found no method to manually get and set the scrolling position either.
Hello,
I don't speak English very well, but I have a question about the API WPF Telerik.
I would like to know if it's possible to draw on charts?
The user must be able to draw a rectangle on a scatter series using the mouse.
This rectangle will be modified in width. The height will be automatically adjusted based on the average of selected points in the rectangle.
We would like to know if this is feasible or not via the API WPF Telerik and if so using what events?
Best regards,
<telerik:RadGridView.Columns>
<!-- IsActiveGroup -->
<telerik:GridViewDataColumn DataMemberBinding="{Binding IsActiveGroup}" >
<telerik:GridViewDataColumn.FilteringControl>
<GridView:FilteringControl Style="{DynamicResource FilteringControlStyle}"/>
</telerik:GridViewDataColumn.FilteringControl>
<telerik:GridViewDataColumn.Header>
<TextBlock Text=" " ToolTip="{lex:LocText S3.ParametersUE.PatientManagement:UIStrings:PatientListView_PatientGridColumnIsActiveToolTip}"/>
</telerik:GridViewDataColumn.Header>
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<Image Source="{Binding Path=IsActiveImageSource, Converter={StaticResource imgConverter}}" Stretch="UniformToFill" RenderOptions.BitmapScalingMode="HighQuality" Width="20" Height="20" ToolTip="{Binding IsActiveGroup}" />
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
</telerik:GridViewDataColumn><!-- HasWarningGroup -->
<telerik:GridViewDataColumn DataMemberBinding="{Binding HasWarningGroup}" >
<telerik:GridViewDataColumn.FilteringControl>
<GridView:FilteringControl Style="{DynamicResource FilteringControlStyle}"/>
</telerik:GridViewDataColumn.FilteringControl>
<telerik:GridViewDataColumn.Header>
<TextBlock Text=" " ToolTip="{lex:LocText S3.ParametersUE.PatientManagement:UIStrings:PatientListView_PatientGridColumnHasWarningToolTip}"/>
</telerik:GridViewDataColumn.Header>
<telerik:GridViewDataColumn.CellTemplate>
<DataTemplate>
<Image Source="{Binding Path=HasWarningImageSource, Converter={StaticResource imgConverter}}" Stretch="UniformToFill" RenderOptions.BitmapScalingMode="HighQuality" Width="20" Height="20" ToolTip="{Binding HasWarningGroup}" />
</DataTemplate>
</telerik:GridViewDataColumn.CellTemplate>
</telerik:GridViewDataColumn>
etc...