Does the RadReichTextBox support inserting images from the remote server specified directory, opening a window, displaying thumbnails, and selecting multiple pictures?
such as, I have a static resources server ,I want to open a file window with the specified directory(http://192.168.1.103:8089/surveypics/), ,when open it ,shows the thumbnails of pictures, and choose one or more pictures to insert into the RadRichTextBox
how to solve this?
Hi,
Have an application to chart many time based series all of which have values of 0 and 1 only (On/OFF). Some series do not change over the period while other change a lot. Hence, using a single Y axis means they overlap and the chart is not readable. So ... the desire is to show a stacked (each offset) series on the one chart, the Y scale is kind of irrelevant as each are On/Off only.
So ... how do I make it clear when a series is at 0 (Off) or 1 (ON). It is hard to tell if a horizontal line is 0 or 1 when stacked. My first thought was to use shading. When at 0 a line would be seen and when at 1 a filled bar would be seen. But it looks no range series will work with a linear X axis.
BTW - I can do this spark lines but I'm unable to see how to do it for ChartView series.
Suggestions?
How can I hide the title bar of a floating Telerik pane in WPF? I tried setting the PaneHeaderVisibility property but that only had an effect when the pane was docked. Here's the XAML:
<telerik:RadSplitContainer x:Name="Splitter" InitialPosition="FloatingDockable" telerik:RadDocking.IsAutoGenerated="True">
<telerik:RadPaneGroup telerik:RadDocking.IsAutoGenerated="True" >
<controls:MyPane x:Name="MyPane" Header="Results" IsTabStop="False" CanUserClose="False" PaneHeaderVisibility="Hidden"> <Grid Name="MyGrid"> <controls:Legend Name="Legend"></controls:Legend> </Grid> </controls:MyPane> </telerik:RadPaneGroup> </telerik:RadSplitContainer>
<
telerik:RadGridView.Resources
>
<
Style
TargetType
=
"{x:Type telerik:GridViewRow}"
>
<
Style.Triggers
>
<
DataTrigger
Binding
=
"{Binding Path=DocumentType.DocumentTypeID}"
Value
=
"1"
>
<
Setter
Property
=
"Background"
Value
=
"#FFEBEB1B"
/>
</
DataTrigger
>
<
DataTrigger
Binding
=
"{Binding Path=DocumentType.DocumentTypeID}"
Value
=
"3"
>
<
Setter
Property
=
"Background"
Value
=
"LightGreen"
/>
</
DataTrigger
>
<
DataTrigger
Binding
=
"{Binding Path=DocumentType.DocumentTypeID}"
Value
=
"9"
>
<
Setter
Property
=
"Background"
Value
=
"Cyan"
/>
</
DataTrigger
>
<
DataTrigger
Binding
=
"{Binding Path=DocumentType.DocumentTypeID}"
Value
=
"10"
>
<
Setter
Property
=
"Background"
Value
=
"LightBlue"
/>
</
DataTrigger
>
<
DataTrigger
Binding
=
"{Binding Path=DocumentType.DocumentTypeID}"
Value
=
"4"
>
<
Setter
Property
=
"Background"
Value
=
"Gray"
/>
</
DataTrigger
>
<
DataTrigger
Binding
=
"{Binding Path=IsDocumentGeannuleerd}"
Value
=
"True"
>
<
Setter
Property
=
"Background"
Value
=
"IndianRed"
/>
</
DataTrigger
>
<!-- THE CODE BELOW IS NOT WORKING -->
<
Trigger
Property
=
"IsSelected"
Value
=
"True"
>
<
Setter
Property
=
"Background"
Value
=
"Transparent"
/>
</
Trigger
>
</
Style.Triggers
>
</
Style
>
</
telerik:RadGridView.Resources
>
Is it possible? If so, can someone show me how?
Thanks ... Ed
Hello.
Sorry I didn't follow your indication to open a new ticket.
There it is.
Here is my problem:
1) I create a recurrent appointment (i.e.: every week day at some time).
2) I make an exception (i.e.: I move one occurrence on the week to one our later)
3) I persist the data
4) When I reload from DB, both the occurrence and the exception are shown.
I attached one pic (recurrence.png) showing this.
I managed to create a project where I show how I save and recover the appointment and the exception. The example shows exactly how I do it, except for the persistence layer) (see SchedulerTest.png, which is a zip file in fact)
To make clear my point, I took a screen shot of the sample project showing what I want to fix (scheduletest.png).
There is something I am missing, but can't figure out what.
Thanks.