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.
In addition to the fast document generation, the SpreadStreamProcessing can be adapted to import documents significantly faster than SpreadProcessing. This item has been moved to the Document Processing portal. It can be found here: https://feedback.telerik.com/Project/184/Feedback/Details/251942-spreadstreamprocessing-implement-workbook-import
Fix available in R2 2018 SP1 version.
Similar to File Explorer in Windows 10, it would be helpful to have a Quick Access section in the left navigation pane with the ability to pin frequently used items.
Setting the TextWrapping to Wrap or WrapWithOverflow will not allow the WatermarkContent to be wrapped. Reason for decline: Instead of setting the content inline, we recommend setting it as follows: <telerik:RadWatermarkTextBox Width="100"> <telerik:RadWatermarkTextBox.WatermarkContent> <TextBlock TextWrapping="Wrap" Text="Watermark Content Watermark Content Watermark Content Watermark Content" /> </telerik:RadWatermarkTextBox.WatermarkContent> </telerik:RadWatermarkTextBox> More information can be found in our help about using the WatermarkContent and WatermarkTemplate properties: https://docs.telerik.com/devtools/wpf/controls/radwatermarktextbox/features#using-the-watermarkcontent-property Please let us know if this is not applicable in the scenario of your application.
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.
look the attach file.
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.
check the attach file,the gridview's droplist extend the screen area, my screen is 2560x1440/175% DPI/14 inch/windows 10
I am attempting to use a ReleativeSource in my bindings in two places in a RadGridView: 1) the header of a column, and 2) one of the columns. I am getting "System.Windows.Data Error: 4 : Cannot find source for binding with reference" in both cases. I don't think I need to elaborate much, since https://www.telerik.com/forums/can%27t-find-the-right-ancestor-to-bind-to not only describes it perfectly, but also contains sample code from Telerik that, on my machine, fails the same way.
Currently, some of the controls from the suite are using custom cursors. They are optimized for 96 DPI only. If you set a higher DPI the custom cursors remain small compared to the window cursors. Created several sets of cursors (.cur) and apply different ones for the different DPI. This can be done for RadDiagram, RadSpreadsheet, RadRichTextBox, etc. Original Title: The mouse cursor is too small when DPI is above 100% Original Description: With the Diagrams control/Spreadsheet ,the mouse cursor is too small when DPI is above 100%,looking the attach files.
I want to be able to specify the font family, size, etc. from XAML, not from code. Exactly the same as described here: https://www.telerik.com/forums/implicit-styles-custom-font-and-font-size (background: We are developing a UI Framework + resource dictionary for use in different applications. If each app will have to modify font sizes from code, inconsistencies are surely happen)
Affects RadDateTimePicker control of TelerikWPFControls version 2015.1.1 When the user is typing in a specific date and time, the RadDateTimePicker control's text-to-date parsing doesn't accept an uppercase 'A' at the start of what it expects to be the month's name and automatically errors (displays a tooltip showing 'Error') as soon as an 'A' is input. This prevents the user from entering dates and times more specific than the clickable selection for the months of 'April' and 'August'. However, replacing the 'A' with a lowercase 'a' allows the user to proceed with entering more specific dates and times as normal without the 'Error' tooltip showing. E.g.: 1) the user selects 03 April 2018 17:00:00 from the control's clickable selection of date and times; 2) they then try to type more specific minutes and seconds, e.g. 03 April 2018 17:45:23, but this is not accepted by the control and it displays the 'Error' tooltip; 3) workaround - the user changes 'A' of 'April' to a lowercase 'a', as in 'april'. Now the 'Error' tooltip goes away and the user is able to enter and save the more specific date time of 03 april 2018 17:45:23. This bug only came to light once the control was live in production (released in January) and prevented our users from entering the specific trade date times necessary for regulatory purposes. Can you tell me if this bug has been fixed in later versions of the control? Thanks and regards, Robert Fiteni
looking the attach file,when resize the second gridview's column moving back and forth when at first run the sample,the after columns flicker and the width grow and lessen.and when resize the third column,the 'unit price' column will become the min width. but when test the microsoft's datagrid,it is good,the any other column width's change is gentle.
List numbering should be restarted when copied list is pasted after content that is not in a list. Steps to reproduce: 1. Create a file with a list, a blank line, some text, and another blank line 2. Copy the list 3. Paste it on the blank line directly after the list Expected: The items are added to the end of the existing list Observed: The items are added to the end of the existing list 4. Paste it on the blank line after the text Expected: The items are added to a new list and start numbering at 1 Observed: The items are added to the existing list and start numbering at 7 Workaround: private void RadRichTextBox_CommandExecuting(object sender, Telerik.Windows.Documents.RichTextBoxCommands.CommandExecutingEventArgs e) { if (e.Command is PasteCommand) { DocumentPosition position = new DocumentPosition(this.radRichTextBox.Document); position.MoveToPosition(this.radRichTextBox.Document.CaretPosition); position.MoveUp(); Paragraph previousParagraph = position.GetCurrentParagraphBox().AssociatedParagraph; if (previousParagraph.IsInList) { // We shouldn't restart the numbering when the previous paragraph is in a list. return; } RadDocument doc = ClipboardEx.GetDocument().ToDocument(); Paragraph firstParagraph = doc.EnumerateChildrenOfType<Paragraph>().First(); if (firstParagraph != null && firstParagraph.IsInList) { RadDocumentEditor editor = new RadDocumentEditor(doc); editor.Document.CaretPosition.MoveToStartOfDocumentElement(firstParagraph); editor.RestartListNumbering(); } this.radRichTextBox.InsertFragment(new DocumentFragment(doc)); e.Cancel = true; } }