Hey guys, I'm trying to add a QuickStart(TextBox with Autocomplete) to the Title Bar, like visual studio 2017. I've tried adding a RadTextBoxElement, but I couldn't even enter text on it, any help? But of course I wanna it beatiful, like Visual Studio, changing border colors and back color. I've attached how it is on VS and how it is on mine.
The button is a RadButtonElement.
Hello Telerik Team !
I currently try to achieve something similar to the attached picture.
Maybe I took the wrong direction, by using a MaskedEditBox with a DateTime MaskType, I am trying to add an adjacent button picture to open a calendar, and also a drop down button with several standard choice.
By editing UI Elements I notice the presence of a StackLayoutPanel with LightVisualButtonElement, I put both Visibility to Visible and add a little calendar icon image.
I can see It on Visual Studio, but the icon does not appear when I launch the program, and also I don't have any idea what kind of event I need to add if I succeed in showing the icon to open a calendar control to select my date.
So maybe I took a wrong direction by using this controls ?
Any help or suggestion would be highly welcome
Thanks in adavnce
Jeff

Hi there,
I've used Telerik grid inside an application.
I wanna to do something when the user changes the order of column groups (column group 1 and column group 2) by dragging them using a mouse. but I didn't find any solution for this.
So is there any event to detect reorder change for "column group"?

I want users to be able to modify columns width, order, pinned state, ... But at the same time, I have two grids in the same form one above the other and I would like to sync layout of both.
I have tried to use somthing like this, but it is not working:
foreach (var col in this.grid1.Columns)
{
this.grid2.Columns.Add(col);
}

how to insert data to live data ?
how to give background / fill color in live data chartview ?

void dataGridView_CurrentCellDirtyStateChanged(object sender, EventArgs e)
{
if ((dataGridView.IsCurrentCellDirty) & (dataGridView.CurrentCell.ColumnIndex == 0))
{
dataGridView.CommitEdit(DataGridViewDataErrorContexts.Commit);
}
} 
Hello,
Is it possible to display a RadGridView inside a cell? The grid should take data from cell (data will be splitted by columns and rows, not many, just a couple of rows per cell, 3 columns) I was considering examples of custom cells provided but without success. Could I get any clues how to proceed if it is feasible at all, please?
Thanks
Wojciech

I have several textboxes with the option to show clear button enable but I want to shoe the clear button only when a textbox is active by the user. Can this be done?
How can I get HorizontalScrollingOffset with RadGridView?
I'm trying to refresh the grid and keep the screen in the same horizontal position, I succeeded to do it in vertical position.
Thanks in advance
Amir
