Hello,
I have a little problem with Gridview. The problem is when I add a descriptor to grid like this
gridView.SortDescriptors.Add(COLUMNNAME, System.ComponentModel.ListSortDirection.Descending)The row is covered by filtering options
What could be the problem? How can I solve this?
I am using Telerik WinForm R1 2018 SP1
Thank you"

Hi,
I have DataEntry with Dock=Fill, is it possible to "repaint" or "redraw" DataEntry after changing form's size, so controls width corresponds form width?
Thanks
Alex

Hi all,
I have C# class called EventHandler that looks like this. StartTime and EndTime both represent the number of seconds since the start of its "parent", which is basically just a list of Events.
public class EventHandler{ public Event Event; public float StartTime => Event.StartTime; public float EndTime => Event.EndTime;}
I'm trying to use RadGanttView to display the parent, (i.e. a List<Event>), but since StartTime and EndTime are both relative and don't have specific dates, I'm not sure where to begin. Values are both also typically below 5 seconds. Can anyone point me in the right direction?
Thanks in advance!

I have 2 telerik gridviews - overall & details.
What is the easiest way to print invoice using the information in Telerik winform gridview?
Thanks.

Hi, I try to copy/paste merged cells, when right click appears a menu with copy/paste options, when copy a cell or range of cells anything is wrong, but when paste the cells appear a popup that say "Cannot change part of a merged cell." Anyone know about this?
Thanks

Hello everyone.
When I use the RadGridView control, I want to add data to the table that can be entered into four decimal places, but when the data is entered,
it automatically rounds to save two decimal places; I want it to show how to solve multiple decimal places;
Create new Word-inspired project. Add the event handler below:
private void radRichTextEditor1_CommandExecuting(object sender, CommandExecutingEventArgs e){ if (e.Command is EditFooterCommand) { e.Cancel = true; }}
If document is not protected then user cannot enter the footer, either by menu or by double-click. If the document is protected (menu Review > button Protect Document) the user cannot edit the footer (as document is protected), nor can they enter it by menu (Insert > Footer), but they can still enter it by double-click. Is there a way to prevent them even from entering the footer by double-click when the document is protected?


Hello,
My gridview is in bound mode. I reorder the rows by drag & drop. I'm inspired by this telerik github demo:
I change the order of data source in order to reorder the rows by drag & drop. It worked well.
But if a column is sorted, any drag & drop cannot be toke into account. And then if I canceled a column sorting, the order synchronize well by drag & drop.
I wonder the column sorting maybe changed the order of child rows, not the order of rows, but then I change the order of rows (data source) by drag & drop, the order of child rows stays put strangely. So that's why there is no reordering affecting the display.
What happens between child rows and rows when I cancel the column sorting ?
What is the way out of this situation? I would like drag & drop has higher priority than column sorting/grouping.
Thank you by advance.

Hello,
I am wondering if it is possible to set a RadContextMenu for certain nodes when creating them programmatically.
For example, my tree will look something like this:
[MAIN NODE]
[Child1]
[Child2]
[MAIN NODE 2]
[Child1]
[Child2]
Would it be possible to have a RadContextMenu only for the parent node, and then a separate RadContextMenu for all the Child nodes?
