Hello,
I would like to extend the Calendar control to add the SpecialDays-Feature. I was able to override the SelectTemplate function and return two different DataTemplates. I also added a list of dates to the control, all those days are shown bold red in the calendar. This works fine if IsTodayHighlighted is set to false - whenever I enable this feature, the style of my SpecialDay-Feature is overwritten. How can I modifiy the style of the today field, based on the list that is bound to the control?
Thanks in advance
radShape.DragEnter += OnShapePositionChanged;
radShape.AddHandler(RadDragAndDropManager.DragQueryEvent,
new
EventHandler<DragDropQueryEventArgs>(OnShapePositionChanged));
How to draw RadBarcode128 (Telerik.Windows.Controls) in RadFixedPage (Telerik.Windows.Documents.Fixed.Model).
I have tried to export image from Barcode as a FrameworkElement (BitMapImage) and draw this image into the RadFixedPage, but the quality of the image was very low.
Thanks.
I have problem with sorting on GridView
I have two number columns (integers) and when I click on the column header to sort it sorts them as string and not numeric values.
.xaml file
<telerik:RadGridView x:Name="gridViewOrders"
ShowGroupPanel="False"
AutoGenerateColumns="False"
CanUserSortColumns="True"
RowIndicatorVisibility="Collapsed"
IsFilteringAllowed="False">
<telerik:RadGridView.Columns>
<telerik:GridViewDataColumn DataMemberBinding="{Binding Order}"/>
<telerik:GridViewDataColumn DataMemberBinding="{Binding Account}" />
<telerik:GridViewDataColumn DataMemberBinding="{Binding Name}"/>
<telerik:GridViewDataColumn DataMemberBinding="{Binding Timestamp}"/>
</telerik:RadGridView.Columns>
</telerik:RadGridView>​
cs file
gridView​Orders.ItemsSource = tradesRepo.ListOfPendingOrders;​
Any ideas?
Thanks
Hello,
I am catching MouseLeftButtonUp event. I select multiple items and then select one item from that multiple selected item (The focus and selection is now in one item). When MouseLeftButtonUp fires, it still displays the multiple selection count in SelectedItems.count. Is it a bug? how to do a work around? Thanks in advance. I am using file version 2015.2.728.45 Telerik.Windows.Controls.dll.
Hi,
I have gridview in which I added some common group headers to group the columns logically. Depending on the context some of these logical groups have no data and therefore I hide them in the UI (IsVisible=false on DataLoaded event). On exporting the grid to Excel (.ExportToXlsx method) the Group Headers does not line up with the relevant columns. I put this down to the hidden columns so my solution was to first show all the columns (IsVisible=true), do the export and then hide the relevant empty columns again. However, now none of the group headers are exported.
I capture the ElementExportingToDocument event and can see a CommonColumnHeaderRow element being exported but no CommonColumnHeaderCell element or the like (next element is HeaderRow).
Any thoughts?