The copyright notice is shown on top of the content. It cannot be moved and there is no way for the customer to see the content beneath the notice.
Develop Apple/MAC theme
Provide a way to convert any UIElement visualtree to a PDF
Hello, I am using DateTimePicker with JAWS. Here are the issue I ran into: 1. JAWS reads out watermark 3 times 2. JAWS reads out date and time where there is only date populate and dateformat is set for shortdate. For example, date is "04/12/2018". JAWS reads "04/12/2018 00:00:00" 3. Once the date is populated and date field got focus, it will read out date and time at least 2 times. I work on project that required it to compliance with government section 508. This issue will not allow me to use Telerik's datepicker. Please fix this.
With the Windows 10 Anniversary update native controls like TextBox provide this out of the box.
When I scroll around in RadVirtualGrid, I get empty cells in some places. Details: - I set InitialRowCount=21 and InitialColumnCount =17. - The window that contains the VirtualGrid is rather small, so that the horizontal and vertical scrollbars are visible. - I can always reproduce this issue, if I scroll completely to the right, then completely to the bottom and then half-way to the left. - I found out that the CellValueNeeded event is never called with the indexes for these cells. - I'm using version 2017.2.614.45 (NoXaml) of UI for WPF. - I attached a screenshot showing the empty cells and my example project.
A project with problems in RadTreeListView in the attachment. Description of the project: The element RadTreeListView have the name ObjectsTree. As the ItemsSource of ObjectsTree set the child elements of ObjectsTreeViewModel. ObjectsTreeViewModel contains child elements of type ParentNode. The elements of ParentNode have childrens with type ChildNode. (In the project are used 3 ParentNode elements with 3 childNodes at everyone). ChildNode elements that have the property ShowNode equals false should not be displayed. To do this, used the FilterDescriptor. The property IsConnected of ChildNode elements sets the ShowNode property (ShowNode = IsConnected). The button "Node to offline" is used to reset a property IsConnected to the selected ParentNode element and to all of his children. The button "All Nodes to online" is used to set a property IsConnected to the all ParentNode elements and to all of their children. The button "Check Memory Leak" is used update ObjectTree 10000 times. If you check radiobutton "With Rebind" update using Rebind() command If you check radiobutton "With clearing filter" update using command sequence : FilterDescriptors.Clear -> FilterDescriptors.Add. Description of the problem: 1) When updating the tree using the sequence of commands FilterDescriptors.Clear (); FilterDescriptors.Add (...): The visual element displays the elements of tree correctly, but there is a memory leak. 2) When updating with Rebind (): Memory leaks are not present, but we may see following bug: Select ParentNode. Press the "Node to offline" button -> The child elements are hidden, but a triangle for expanding the list elements is visible. When you click on this triangle -> it disappears Press the button "All Nodes to online" ->the children and the triangle do not appear.
Fix available in R2 2018 SP1 version.
File explorer with the drag and drop upload and just a richer interface
A component to easily chat with visitors on a website. It's becoming popular to be able to interact and offer support that way. Maybe based on the Windows Live Components or something along those lines.
When both horizontal and vertical ScrollBars are visible in Fluent theme, the "BottomHandle" RepeatButton cannot be pressed as it is overlapped by the horizontal ScrollBar on MouseOver. Default behavior will be changed and the scrollbars will be reordered in the ScrollViewer ControlTemplate so on MouseOver the current ScrollBar will have higher Canvas.ZIndex.
Would it be possible to add a new theme that accurately tracks the Google Material Design guidelines? (http://www.google.com/design/spec/material-design/introduction.html). Available in the 2017 R2 Release. More information you can find here: http://docs.telerik.com/devtools/wpf/styling-and-appearance/themes-suite/common-styling-appearance-material-theme
User can set AutoCalculateBounds to True by the following way: public class CustomClusterGenerator : DefaultClusterGenerator { public override ClusterData CreateCluster(Location center, object item) { var clusterData = base.CreateCluster(center, item); clusterData.AutoCalculateBounds = true; return clusterData; } } this.VisualizationLayer1.ClusterGenerator = new CustomClusterGenerator(); When clustering 4 points: ObservableCollection<DataItem> items = new ObservableCollection<DataItem>() { new DataItem() {MapLocation = new Telerik.Windows.Controls.Map.Location(20, 30) }, new DataItem() {MapLocation = new Telerik.Windows.Controls.Map.Location(20, 34) }, new DataItem() {MapLocation = new Telerik.Windows.Controls.Map.Location(22, 32) }, new DataItem() {MapLocation = new Telerik.Windows.Controls.Map.Location(18, 32) }, }; this.VisualizationLayer1.ItemsSource = items; EXPECTED: ClusterData's Bounds must be: WEST: 30 and EAST: 34. Actual Values are 30 and 30 (29.9999 and 30).
Available in LIB version 2018.1.312.
It would be awesome if Telerik created custom OpenFileDialog, SaveFileDialog and BrowseFolderDialog controls/windows/dialogs that would mimic the functionality found in: Microsoft.Win32. - Differentiate from competition - Create controls that other WPF controls packages don't have - Allow users to have common styling/views across their application - Make it so our software doesn't have to reference Microsoft.Win32, we can continue to have a native Telerik solution - Could make it more intuitive to program with than the Microsoft dialog (with filters, startup folder etc) Reference post: http://www.telerik.com/forums/why-is-there-no-openfiledialog-in-telerik Available in R3 2017 Official Release of UI for WPF. Check what's new in R3 2017 here: http://www.telerik.com/support/whats-new/wpf/release-history/ui-for-wpf-r3-2017
You have, for example rectangle which is in ContentControl in XAML, next to FluidC.C. FluidContentControl is in small state. Ona button click SmallContent is assigned to the Rectangle. This leads to the exception stated that rectangle is already a logical child of another element.
Basing on the "{StaticResource FilterControlStyle}" would cause an InvalidArgumentException, if the types would mismatch. If you are to base on a custom style on the default style of either of those controls, you can do it by type reference - e.g. BasedOn="{StaticResource {x:Type telerik:FilteringControl}}"