Working in an ERP environment means that users are on the same screens all day long. They tend to pull up the same value from many of the dropdown lists. It would be a nice feature to keep frequently used values at the top of the list, so they can do their work that much easier/quicker.

private void radGridView1_CellValueChanged(object sender, Telerik.WinControls.UI.GridViewCellEventArgs e)
{
bool isChecked = (bool)radGridView1.CurrentRow.Cells[2].Value;
if (isChecked == true)
{
MessageBox.Show("Thanks you");
}
}
Hi,
Im currently using a range selector for a line series chart view.
Is there a way that i can see / calculate how many data points are in the current view from the range selector
Cheers

Hi admin,
I would like to know GridViewSummaryItem with excel cell format of the number when export to excel (using ExportToExcelML). I can do each column of formatting but summary column not showing 'Number' in excel, just show 'General' format. Please, my attached file.

Hi,
I posted a question regarding chat control, I received an answer but I can't find the thread.
URL:
https://www.telerik.com/forums/how-to-allow-multi-line-in-the-input-textbox
Thanks
Hi all-
I'm using a RadGridview (Telerik Winforms version 2018.1.220.40) and am having trouble getting the excel filter grid to look right. The radGridView seems to default to Seguoi 8.5 font, but I increased that to 14 to make it readable. The problem I'm having is that, after I enable Excel filtering, when a user chooses to filter, the excel filter box is tiny (I think it's still 8.5 font) - all the checkboxes are tiny, and the titles are unreadable.
I've searched the forums and found some related posts that instruct in (c#) to run through the elements in the viewCellEditing event, but, either I haven't translated them right into VB, or they aren't doing what I expected.

We are using the Excel like filtering feature. Upon startup I would like to set specific entries in a column as attached. How can I do this?
Hi,
The scenario is following
The system has 2 different windows (type floating.).
Say user is doing something like editing in a first window.
I want programatically to restrict user to the window he is currently working in, until he commits his work.
I.e. prevent him to go to window #2 until he clicks save - so it should work as a modal dialog box while user in editing mode.
I tried to hook up to ActiveWindowChanging event of RadDock class.
I wrote essentially
private void DockerContainer_ActiveWindowChanging(object sender, DockWindowCancelEventArgs e)
{
// some processng
if (needTo capture)
{
e.Cancel = true;
}
}
But it doesn't work.
Are there any way to do what i want to do?
Please help,
Boris Pitel
