Hi Telerik,
I have been able to modify and add context menus to cells. However when the cell is being edited and I right click on it gives me a context menu that I can't seem to modify. Could you tell me how I can replace this context menu?
Cheers
Phil.
Hi,
how to create three items which have three different images. I read the previous answers, but I could not find the answer
//////////////////////////
DiagramListViewDataItem item = new DiagramListViewDataItem();
item.Key = "MyShape";
item.Shape = new AShape();
item.Group = radDiagramToolbox1.Groups[0];
radDiagramToolbox1.Items.Add(item);
//////////////////////////
But the above code is about custom shape not custom image!
bolSelected = true
at any time which is controlled by the collection so that when bolSelected is set to true, all other items will automatically have bolSelected = false
. What I am hoping to see in the grid is when the checkbox is clicked, bolSelected is set to true and other selected item in the grid has their checkboxes unchecked automatically (as the bolSelected = false for all other objects now).Hi,
I have two question about RadCalendar multi-view mode, annual visualization.
What I try to do di edit each month name, on header, putting in it the counter of SpecialDays for each month. It's a company holiday calendar, so I need to show, for every month, the total working days (365 - SpcialDays.where(Date.Month == currentMonth, just for example). How I can achieve this behavior?
Second. Seems to be a problem with the control, in full year view. What happen is that if I set MinDateRange/MaxDateRange of the multi-view on values 01/01/2018-31/12/2018, and I set FocusedDate and SelectedDate on first date on interval (1/1/2018), with a layout of 2 rows and 6 columns, setting by code currentViewRow and currentViewColumn to 0/0, what I get as result is the print-screen attached. This will not happen in any other year (before 2017 and after 2018). I think the problem is due to that 22 august 2017 in today date and august month was badly placed as column/row 0-0 by the control himself.
This piece of code is what I use to set the control layout:
<code>
if (today.Year == year)
{
colForCurrentDate = today.Month <= 6 ? today.Month - 1 : today.Month - 7;
rowForCurrentDate = today.Month <= 6 ? 0 : 1;
calendar.FocusedDate = DateTime.Now.Date;
}
else
{
calendar.FocusedDate = calendar.RangeMinDate;
colForCurrentDate = 0;
rowForCurrentDate = 0;
}
calendar.CurrentViewColumn = colForCurrentDate;
calendar.CurrentViewRow = rowForCurrentDate;
</code>
Is this a bug of the RadCalendar? What I can do in order to resolve this?
Thanks in advance!
Hello,
There appears to be an issue making tool window width adjustments via the splitters in a DPI aware app. Dragging a splitter with the mouse will eventually hide the document window as the tool window makes large changes when only small changes are wanted. This can be demonstrated with a new app with a RadDock control dropped on the form. Add 2 tool windows and 1 document window. Make the app DPI aware. Run the app at 150% and try making small width changes to either of the tool windows. The tool window will make a couple of large jumps and then completely hide the document window. It also doesn't matter which way you drag the tool window as the same phenomenon occurs.
Telerik Control Version: 2017.2.613.40
Framework 4.52 or higher.
Best regards,
Robert
Hi,
I'm wondering if we could customize a chartView Legend to display a checkbox instead of default colored square.
The aim is the have the possibility to show/hide the related serie.
Regards,
Pixie