Is there a way to extend the DataFilter so that you can select how the Filtered Results get sorted from within the editor? Something like, Sort Ascending or Descending that shows up in the drop-down list.
I have a simple wpf application based on the RadWindow which contains an UserControl. In the UserControl i have two controls: ListBox and RadScheduleView. i used very good example from Telerik WPF Demos "RadScheduleView Drag And Drop" section. It works good when everything placed into a Window (or RadWindow). But when i am using UserControl instead of window and i am trying to drag some item from the ListBox i get exception: "Value cannot be null. Parameter name: second"
Stack Trace:
at System.Linq.Enumerable.Union[TSource](IEnumerable`1 first, IEnumerable`1 second)
at Telerik.Windows.DragDrop.Behaviors.DragPayload.PartialTrustPayload.GetFormats(Boolean autoConvert) in c:\TB\117\WPF_Scrum\Current_HotFix\Sources\Development\Core\Controls\DragDropManager\Behaviors\Common\DragPayload.cs:line 107
at System.Windows.DataObject.FormatEnumerator..ctor(DataObject dataObject)
at System.Windows.DataObject.System.Runtime.InteropServices.ComTypes.IDataObject.EnumFormatEtc(DATADIR dwDirection)
Call Stack:
[External Code]
Telerik.Windows.Controls.dll!Telerik.Windows.DragDrop.Behaviors.DragPayload.PartialTrustPayload.GetFormats(bool autoConvert) Line 107 + 0x30 bytes C#
[External Code]
Telerik.Windows.Controls.dll!Telerik.Windows.DragDrop.DragDropManager.DoDragDrop(System.Windows.DependencyObject dragSource, object data, System.Windows.DragDropEffects allowedEffects, System.Windows.DragDropKeyStates initialKeyState, object dragVisual, System.Windows.Point relativeStartPoint, System.Windows.Point dragVisualOffset) Line 1012 + 0xe bytes C#
Telerik.Windows.Controls.dll!Telerik.Windows.DragDrop.DragInitializer.StartDrag() Line 181 C#
Telerik.Windows.Controls.dll!Telerik.Windows.DragDrop.DragInitializer.DragSourcePreviewMouseMove(object sender, System.Windows.Input.MouseEventArgs e) Line 157 C#
[External Code]
Telerik.Windows.Controls.Navigation.dll!Telerik.Windows.Controls.InternalWindow.WindowWithNoChromeWindowHost.Open(bool isModal) Line 35 + 0x19 bytes C#
Telerik.Windows.Controls.Navigation.dll!Telerik.Windows.Controls.WindowBase.ShowWindow(bool isModal) Line 716 C#
Telerik.Windows.Controls.Navigation.dll!Telerik.Windows.Controls.RadWindow.ShowDialog() Line 420 C#
> RadDragDrop.exe!RadDragDrop.MainWindow.MainWindow_Activated(object sender, System.EventArgs e) Line 35 + 0x1e bytes C#
[External Code]
Hi, I am trying to filter RadGridView in the background thread, to keep the UI active while user is typing his/her search string. All I am doing curretly is using custom predicate for all columns. With too many rows > 1K the UI get sluggish.
Is it possible to have the GridView set to isBusy while a pasting operation is underway? Sometimes it takes a few seconds to complete a large paste and it'd be nice to be able to have it show the user it is busy. Thanks
we are planning to use "RADDataFilter" only as the UI to provide Search criteria and then use those criteria's as an input to sql procedure and search against the database. so to do this we need to get the criteria's entered by the user from DataFilter.
i checked properties of the DataFilter ,but could not get any which provides the information.
Hi! I am having a bit of a problem with a RadGridView. The F5-key, which I would like to use to refresh the entire view, is being consumed by the grid, How can I work around this problem?
I have multiple RichTextBoxes (5) in my application and I need to support Search/Replace across all RichTextBoxes. Also, I have similar requirements for Spell Check/Find Next Error. How do I go about implementing these functionality?