Hello everyone,
I need your help. I want (like in title) group items in RadGridView, but if some group have exactly one item then I don't want group this item.
I use this part of code to group my item list.
<
telerik:RadGridView.GroupDescriptors
>
<
telerik:GroupDescriptor
Member
=
"Source"
/>
</
telerik:RadGridView.GroupDescriptors
>
I want to achieve solution like this:
>group_1
element_1
element_2
>group_2
element_3
element_4
element_5 (because in group_3 we have only one item)
element_6 (because in group_4 we have only one item)
>group_5
element_7
element_8
element_9
Thank you for your help.
Mon
I have attached Snap of my application when it it maximized(Capture1.jpg).
when I am minimizing the window application look like as Capture2.jpg,
What should i chnage in My application, so that As i minimize the application controls size should not be change and scrollbar should be visible in application? as (Capture3.jpg)
I am using Q1 2016 version of telerik
I have a binding for my Document source using MVVM light
This is my XAML code :
<telerik:RadPdfViewer Grid.Row="1" HorizontalAlignment="Stretch" Name="pdfViewer" VerticalAlignment="Top"
DocumentSource="{Binding DocumentPdf}" />
and here is my code :
public CotisationPdfVm(string url)
{
DocumentPdf = new PdfDocumentSource(new Uri(url), FormatProviderSettings.ReadOnDemand);
}
private PdfDocumentSource _documentPdf;
public PdfDocumentSource DocumentPdf
{
get { return _documentPdf; }
set
{
_documentPdf = value;
RaisePropertyChanged(() => DocumentPdf);
}
The url is
The document remains blank. No exception.
When I put a breakpoint in the set of my property the I have: IsStreamLoaded = false
The url is "http://109.88.185.2:60000/Reports/Cotisation/2017/CotisationReportVANDEVOORDEN Patrick-354-2017.pdf"
The uri is "http://109.88.185.2:60000/Reports/Cotisation/2017/CotisationReportVANDEVOORDEN%20Patrick-354-2017.pdf"
When I try with a browser (IE) with the same uri I can read the document.
We are using the RadDiagram for Telerik WPF. We have restricted the draggable area using the following link:
http://docs.telerik.com/devtools/wpf/controls/raddiagram/howto/customize-dragging
But we also would like to restrict the area that the user is able to pan the diagram. It would be great if it wasn´t possible to pan away from the restricted draggable area. Is this possible, and if yes, how?
I have tried to use PreviewPan but haven´t figured out if that is the way to go...
New to GanttView and was wondering how I can change the right hand side to display from days to minutes or years depending on the application.
also, it would be nice to integrate a zoom capability. is there an option that will allow a user to zoom in and out on the right hand panel of the ganttview. thanks
Hi Telerik,
Could you please advise if there is a way to programmatically simulate the sliding of a RadPane using a bound property to a ViewModel, for instance? We've managed to bind to the IsPinned property, which will pin and unpin the pane, however we'd like to possibly bind to a property that will slide the RadPane in and out when it is unpinned, instead of having it pinned.
Please see the attached file for a screen print example.
Please advise.
Kind regards